mirror of
https://github.com/archlinux/aur.git
synced 2026-02-10 06:54:23 +01:00
initial commit: 1.0
This commit is contained in:
commit
a4b535952e
4 changed files with 52 additions and 0 deletions
16
.SRCINFO
Normal file
16
.SRCINFO
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
pkgbase = rmtfs
|
||||
pkgdesc = Qualcomm Remote Filesystem Service Implementation
|
||||
pkgver = 1.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/andersson/rmtfs
|
||||
arch = aarch64
|
||||
arch = x86_64
|
||||
license = BSD-3-Clause
|
||||
depends = qrtr
|
||||
depends = libudev.so
|
||||
source = rmtfs-1.0.tar.gz::https://github.com/linux-msm/rmtfs/archive/refs/tags/v1.0.tar.gz
|
||||
source = udev.rules
|
||||
sha256sums = 45e53d4e3d92717bed3b896c871429abe6cfb55230b39b4228323537167834e7
|
||||
sha256sums = 0c2f26d40d9d18e3089c6d836b64231c4f7e0c1ca41686fe7c9d1eb495dc6bbe
|
||||
|
||||
pkgname = rmtfs
|
||||
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
*.tar.zst
|
||||
*.tar.gz
|
||||
*.log
|
||||
32
PKGBUILD
Normal file
32
PKGBUILD
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Maintainer: Sam Day <me@samcday.com>
|
||||
|
||||
pkgname="rmtfs"
|
||||
pkgdesc="Qualcomm Remote Filesystem Service Implementation"
|
||||
pkgver=1.0
|
||||
pkgrel=1
|
||||
arch=(aarch64 x86_64)
|
||||
url="https://github.com/andersson/rmtfs"
|
||||
license=("BSD-3-Clause")
|
||||
depends=(qrtr libudev.so)
|
||||
makedepends=()
|
||||
_srcname="${pkgname}-${pkgver}"
|
||||
source=(
|
||||
"${_srcname}.tar.gz::https://github.com/linux-msm/rmtfs/archive/refs/tags/v${pkgver}.tar.gz"
|
||||
"udev.rules"
|
||||
)
|
||||
sha256sums=('45e53d4e3d92717bed3b896c871429abe6cfb55230b39b4228323537167834e7'
|
||||
'0c2f26d40d9d18e3089c6d836b64231c4f7e0c1ca41686fe7c9d1eb495dc6bbe')
|
||||
|
||||
build() {
|
||||
cd "$_srcname"
|
||||
|
||||
make prefix=/usr
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_srcname"
|
||||
|
||||
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
|
||||
}
|
||||
1
udev.rules
Normal file
1
udev.rules
Normal file
|
|
@ -0,0 +1 @@
|
|||
SUBSYSTEM=="uio", ATTR{name}=="rmtfs", SYMLINK+="qcom_rmtfs_uio1"
|
||||
Loading…
Add table
Reference in a new issue