# This is an example PKGBUILD file. Use this as a start to creating your own, # and remove these comments. For more information, see 'man PKGBUILD'. # NOTE: Please fill out the license field for your package! If it is unknown, # then please put 'unknown'. # Maintainer: Your Name pkgname=slrn pkgver=1.0.3 pkgrel=1 epoch= pkgdesc="S-Lang read news is a terminal based newsreader for usenet" arch=('any') url="http://slrn.sourceforge.net/" license=('GPL') groups=() depends=() makedepends=() checkdepends=() optdepends=() provides=(slrn) conflicts=() replaces=() backup=() options=() install= changelog= source=("http://jedsoft.org/releases/slrn/slrn-1.0.3a.tar.bz2") noextract=() md5sums=('a06e74f9fede1196c92479210519f77e') sha1sums=('898d09685f5fe159f23829cd21e15308f5dce822') sha256sums=('3ba8a4d549201640f2b82d53fb1bec1250f908052a7983f0061c983c634c2dac') validpgpkeys=() prepare() { cd "$pkgname-$pkgver" } build() { cd "$pkgname-$pkgver" ./configure --prefix=/usr make } package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir/" install }