mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added aur/rmtfs-git
This commit is contained in:
parent
85672094f5
commit
a52ede6b4a
1 changed files with 38 additions and 0 deletions
38
aur/rmtfs-git/PKGBUILD
Normal file
38
aur/rmtfs-git/PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Maintainer: Jami Kettunen <jami.kettunen@protonmail.com>
|
||||
|
||||
buildarch=8
|
||||
|
||||
_pkgname="rmtfs"
|
||||
pkgname="$_pkgname-git"
|
||||
pkgdesc="Qualcomm Remote Filesystem Service Implementation"
|
||||
pkgver=r57.b08ef6f
|
||||
pkgrel=1
|
||||
arch=("aarch64")
|
||||
url="https://github.com/andersson/$_pkgname"
|
||||
license=("BSD-3-Clause")
|
||||
groups=("qcom-icnss-wlan")
|
||||
depends=("qrtr" "systemd")
|
||||
makedepends=("git" "make" "gcc")
|
||||
provides=("$_pkgname")
|
||||
source=("git://github.com/andersson/$_pkgname.git" "udev.rules")
|
||||
md5sums=("SKIP" "1e827788992863c3e8562e288f65ee05")
|
||||
|
||||
pkgver() {
|
||||
cd "$_pkgname"
|
||||
|
||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_pkgname"
|
||||
|
||||
make prefix=/usr
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_pkgname"
|
||||
|
||||
make prefix=/usr DESTDIR="$pkgdir/" install
|
||||
install -Dm644 "$srcdir"/udev.rules "$pkgdir/usr/lib/udev/rules.d/65-$_pkgname.rules"
|
||||
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$_pkgname/COPYING
|
||||
}
|
Loading…
Reference in a new issue