summaryrefslogtreecommitdiff
path: root/extra/datefudge/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-11-13 09:52:07 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-11-13 09:52:07 +0100
commitd830c3b1d23d90c928c68bf821049db3abf897b8 (patch)
treefe0cb5ea454a6dbbdd4ad55fc41a6d1c539822c1 /extra/datefudge/PKGBUILD
parent4d0ba8da182e9ae35e0f7071adc2970d906698bc (diff)
parentb863c91c6c9218e2ad9458231b24385be177ed08 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/gtkdatabox/PKGBUILD community/ibus-sunpinyin/PKGBUILD community/sunpinyin/PKGBUILD extra/php-xcache/PKGBUILD extra/sdl_mixer/PKGBUILD extra/xorg-server/PKGBUILD
Diffstat (limited to 'extra/datefudge/PKGBUILD')
-rw-r--r--extra/datefudge/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/datefudge/PKGBUILD b/extra/datefudge/PKGBUILD
new file mode 100644
index 000000000..1cf348382
--- /dev/null
+++ b/extra/datefudge/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 170796 2012-11-11 16:17:27Z andyrtr $
+# Maintainer: Andreas Radke <andyrtr@archlinux.org>
+# Contributor: Dan Serban (dserban01 => gmail)
+
+pkgname=datefudge
+pkgver=1.17
+pkgrel=1
+pkgdesc="A program (and preload library) to fake system date"
+arch=('i686' 'x86_64')
+url="http://packages.qa.debian.org/d/datefudge.html"
+license=('GPL2')
+depends=('sh')
+source=(http://ftp.de.debian.org/debian/pool/main/d/$pkgname/${pkgname}_${pkgver}.tar.gz)
+md5sums=('d306e183ea3fdbde088ebd523f6387c5')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ #./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make test
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}