diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-06-30 15:52:20 +0300 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-06-30 15:52:20 +0300 |
| commit | 5612f51b3cde283dcebb652aaec821982c7cfd45 (patch) | |
| tree | a178e8ead443ed5bbb60140f0a9a4b168d5b3eb1 /PKGBUILD | |
Initial import
Diffstat (limited to 'PKGBUILD')
| -rw-r--r-- | PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..0cfdaad --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Yuval Adam <yuv dot adm at gmail dot com> PGP-Key: CC2115C12D99D2F0 + +pkgname=vix-git +pkgver=de9bdcb +pkgrel=1 +pkgdesc="Visual Interface heXadecimal dump" +arch=('any') +url="http://actinid.org/vix/" +license=('unknown') +depends=('sdl') +makedepends=('libtool' 'autoconf') +source=('git+https://github.com/BatchDrake/vix') +sha1sums=('SKIP') +_gitname=vix + +pkgver() { + cd $_gitname + echo $(git describe --always | sed 's/-/./g') +} + +build() { + cd $_gitname + libtoolize + autoreconf -fvi + ./configure --prefix=/usr + make +} + +package() { + cd $_gitname + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |
