blob: 211307fa3501e0df56949e369ae73d1d9e6ce269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: aspen <luxx4x@protonmail.com>
pkgname="tapi-git"
pkgver=r38.86f43cdb6
pkgrel=1
arch=('any')
pkgdesc="Apple TAPI library"
url="https://github.com/tpoechtrager/apple-libtapi"
license=('LLVM')
depends=()
makedepends=('git' 'python' 'cmake')
source=("$pkgname::git+$url.git")
sha512sums=('SKIP')
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$pkgname"
INSTALLPREFIX="$pkgdir/usr" ./build.sh
}
package() {
cd "$pkgname"
./install.sh
}
|