Skip to content
PKGBUILD.in 490 B
Newer Older
Seblu's avatar
Seblu committed
# Maintainer: Sébastien Luttringer

pkgname=archversion
Seblu's avatar
Seblu committed
pkgver=@VERSION@
Seblu's avatar
Seblu committed
pkgrel=1
pkgdesc='Archlinux Version Controller'
arch=('any')
url='https://github.com/seblu/archversion'
license=('GPL2')
Seblu's avatar
Seblu committed
depends=('python' 'pyalpm' 'python-xdg')
Seblu's avatar
Seblu committed
optdepends=('abs: to sync abs tree')
source=("$pkgname-$pkgver.tar.xz")
md5sums=('SKIP')
Seblu's avatar
Seblu committed

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr
  make
}

package() {
  cd $pkgname-$pkgver
  make install DESTDIR="$pkgdir"
}

# vim:set ts=2 sw=2 et: