From 9e22d31cea5dd4f3c897752a8f680c0b65b5043c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoffer=20M=C3=BCller=20Madsen?= Date: Sat, 13 Aug 2016 17:51:26 +0200 Subject: [PATCH] initial commit --- pcs-a6le/PKGBUILD | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 pcs-a6le/PKGBUILD diff --git a/pcs-a6le/PKGBUILD b/pcs-a6le/PKGBUILD new file mode 100644 index 0000000..03e2a9d --- /dev/null +++ b/pcs-a6le/PKGBUILD @@ -0,0 +1,50 @@ +# 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: Christoffer Müller Madsen +pkgname=pcs +pkgver=8.4_a6le +pkgrel=1 +epoch= +pkgdesc="" +arch=('x86_64') +url="http://www.scheme.com" +license=('') +groups=() +depends=() +makedepends=() +checkdepends=() +optdepends=() +provides=() +conflicts=() +replaces=() +backup=() +options=() +install= +changelog= +source=("$pkgname-${pkgver//_/-}.tar.gz") +noextract=() +md5sums=() +validpgpkeys=() + +prepare() { + cd "${pkgname}v$pkgver" +} + +build() { + cd "${pkgname}v$pkgver" + ./configure --prefix=/usr + make +} + +check() { + cd "${pkgname}v$pkgver" + make -k check +} + +package() { + cd "${pkgname}v$pkgver" + make DESTDIR="$pkgdir/" install +}