diff --git a/aur/pioneers/PKGBUILD b/aur/pioneers/PKGBUILD new file mode 100644 index 000000000..ba71d1385 --- /dev/null +++ b/aur/pioneers/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: bug +# Contributor: Lone_Wolf +pkgname=pioneers +pkgver=14.1 +pkgrel=1 +pkgdesc="A clone of the famous Siedler of Catan game" +arch=('i686' 'x86_64') +url="http://pio.sourceforge.net/" +license=('GPL2') +depends=('gtk2') +makedepends=('pkgconfig' 'intltool') +source=(http://downloads.sourceforge.net/pio/$pkgname-$pkgver.tar.gz) +md5sums=('ed6bc9e4d16c0ba95a016a590092023a') +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make || return 1 + make DESTDIR="$pkgdir" install +}