diff options
Diffstat (limited to 'rolo-git/PKGBUILD')
-rw-r--r-- | rolo-git/PKGBUILD | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/rolo-git/PKGBUILD b/rolo-git/PKGBUILD deleted file mode 100644 index db7ef59..0000000 --- a/rolo-git/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: Deposite Pirate <dpirate at metalpunks dot info> -# -# Upstream: https://git.metalpunks.info/arch-ports - -_pkgname=rolo -pkgname=${_pkgname}-git -pkgver=0.392.8446eb7 -pkgrel=1 -pkgdesc="Ncurses vCard viewer and editor" -arch=('i686' 'x86_64') -url="https://github.com/libvc/rolo" -license=('GPL') -depends=('ncurses' 'libunac' 'libvc-git') -makedepends=('autoconf') -conflicts=(rolo) -provides=(rolo) -source=("${_pkgname}::git+${url}") -sha256sums=('SKIP') - -pkgver() { - cd "${_pkgname}" - echo "0.$(git rev-list --count HEAD).$(git describe --always)" -} - -build() { - cd "${_pkgname}" - autoreconf -f -i - CFLAGS="${CFLAGS}" ./configure --prefix=/usr --mandir=/usr/share/man - make -} - -package() { - cd "${_pkgname}" - make DESTDIR="$pkgdir" install - install -dm755 "${pkgdir}/usr/share/doc/${_pkgname}" - install -m644 AUTHORS NEWS README THANKS TODO \ - "${pkgdir}/usr/share/doc/${_pkgname}" -} |