diff options
author | Dennis Wölfing | 2018-04-16 20:48:40 +0200 |
---|---|---|
committer | Dennis Wölfing | 2018-04-16 20:48:40 +0200 |
commit | 2f00c59be7bbb24049ccf3fe8493652f8e54e6ad (patch) | |
tree | d50dfe88895fc0e0226a32bc8f034a24e8e29e27 /PKGBUILD | |
parent | 286727b8bb970ed747bba47aeff046dac2781a0f (diff) | |
download | aur-rw.tar.gz |
Use release tarball instead of git.
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -2,24 +2,22 @@ pkgname=rw pkgver=1.0 -pkgrel=1 +pkgrel=2 pkgdesc="Blockwise input/output" arch=('x86_64') url="https://sortix.org/rw" license=('custom:ISC') depends=('glibc') -makedepends=('git') -_commit=755e3df0fab3c19d9c69c52dcb04687df8f587e2 -source=(git+https://gitlab.com/sortix/rw-portable.git#commit=$_commit) -md5sums=('SKIP') +source=(https://sortix.org/rw/release/rw-portable-${pkgver}.tar.gz) +sha256sums=('50009730e36991dfe579716f91f4f616f5ba05ffb7bf69c03d41bf305ed93b6d') build() { - cd rw-portable + cd rw-portable-${pkgver} make } package() { - cd rw-portable + cd rw-portable-${pkgver} make DESTDIR="$pkgdir" PREFIX=/usr install install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } |