Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2017
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.72 KB | None | 0 0
  1. # Maintainer: bug <bug2000@gmail.com>
  2. # Contributor: Lone_Wolf <lonewolf@xs4all.nl>
  3.  
  4. pkgname=pioneers
  5. pkgver=15.4
  6. pkgrel=2
  7. pkgdesc="A clone of the famous The Settlers of Catan tabletop game"
  8. arch=('i686' 'x86_64')
  9. url="http://pio.sourceforge.net/"
  10. license=('GPL2')
  11. depends=('gtk3' 'libnotify')
  12. makedepends=('pkgconfig' 'intltool' 'librsvg')
  13. source=(http://downloads.sourceforge.net/pio/$pkgname-$pkgver.tar.gz)
  14. sha512sum=('a89f30d8bc064a7823f8159b0f60dcf18f1452afec3b4a74f82a6e429c2306aba8f44be19ce6155f23ba5ee4918ebe1928f8620ec44b95b140d8c3b2806167dc')
  15.  
  16. build() {
  17.   cd "$srcdir/$pkgname-$pkgver"
  18.   ./configure --prefix=/usr
  19.   make
  20. }
  21.  
  22. package() {
  23.   cd "$srcdir/$pkgname-$pkgver"
  24.   make DESTDIR="$pkgdir" install
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement