Skip to content

Commit 9f3bdf4

Browse files
authored
Merge pull request #73 from micwoj92/master
Update PKGBUILD
2 parents b24973f + d677375 commit 9f3bdf4

2 files changed

Lines changed: 14 additions & 13 deletions

File tree

arch-sign-modules/.SRCINFO

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
pkgbase = arch-sign-modules
22
pkgdesc = Signed (In Tree & Out of Tree) Kernel Modules for linux linux-lts linux-hardened linux-zen + AUR kernels
33
pkgver = 0.7.0
4-
pkgrel = 1
4+
pkgrel = 2
55
url = https://github.com/itoffshore/Arch-SKM
66
install = arch-sign-modules.install
7-
arch = x86_64
8-
license = GPL
7+
arch = any
8+
license = MIT
99
depends = git
1010
depends = rsync
1111
depends = python-zstandard
1212
optdepends = pacman-contrib
13+
optdepends = nano: default editor
14+
optdepends = mousepad: default gui editor
1315
source = arch-sign-modules-0.7.0.tar.gz::https://github.com/itoffshore/Arch-SKM/archive/0.7.0.tar.gz
1416
md5sums = 982321bc372a2fb40e82ad9ad5924d30
1517

arch-sign-modules/PKGBUILD

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,28 @@
22
pkgname=arch-sign-modules
33
_pkgname=Arch-SKM
44
pkgver=0.7.0
5-
pkgrel=1
5+
pkgrel=2
66
pkgdesc="Signed (In Tree & Out of Tree) Kernel Modules for linux linux-lts linux-hardened linux-zen + AUR kernels"
7-
arch=(x86_64)
7+
arch=(any)
88
url="https://github.com/itoffshore/Arch-SKM"
9-
license=(GPL)
9+
license=(MIT)
1010
depends=('git' 'rsync' 'python-zstandard')
11-
optdepends=('pacman-contrib')
12-
makedepends=()
11+
optdepends=('pacman-contrib'
12+
'nano: default editor'
13+
'mousepad: default gui editor')
1314
install="$pkgname.install"
1415
source=($pkgname-$pkgver.tar.gz::https://github.com/itoffshore/$_pkgname/archive/$pkgver.tar.gz)
1516
md5sums=('982321bc372a2fb40e82ad9ad5924d30')
1617

17-
build() {
18-
return 0
19-
}
20-
2118
package() {
22-
cd "$srcdir/$_pkgname-$pkgver"
19+
cd $_pkgname-$pkgver
2320
mkdir -p $pkgdir/usr/{src,bin,share/$pkgname}
2421

2522
cp -rf certs-local $pkgdir/usr/src/
2623
cp scripts/* $pkgdir/usr/bin/
2724
cp Arch-Linux-PKGBUILD-example $pkgdir/usr/share/$pkgname/PKGBUILD.example
2825
cp -rf patches $pkgdir/usr/share/$pkgname/patches
2926
cp README.scripts.md $pkgdir/usr/share/$pkgname/README.scripts.md
27+
# license
28+
install -Dm644 LICENSE $pkgdir/usr/share/licenses/${pkgname}/LICENSE
3029
}

0 commit comments

Comments
 (0)