diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/cairo-clock/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/cairo-clock/PKGBUILD')
-rw-r--r-- | community/cairo-clock/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/cairo-clock/PKGBUILD b/community/cairo-clock/PKGBUILD new file mode 100644 index 000000000..110270fc2 --- /dev/null +++ b/community/cairo-clock/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 32901 2010-11-18 18:13:30Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Kane Wilson <kane_wilson@hotmail.com> + +pkgname=cairo-clock +pkgver=0.3.4 +pkgrel=1 +pkgdesc="It's an analog clock displaying the system-time." +arch=('i686' 'x86_64') +url='http://macslow.thepimp.net/?page_id=23' +license=('GPL') +depends=('cairo' 'libglade>=2.6.0' 'librsvg>=2.14.0') +makedepends=('intltool') +source=("http://macslow.thepimp.net/projects/cairo-clock/${pkgname}-${pkgver}.tar.gz" + cairo-clock.patch) +md5sums=('78e5b3aa3492aa6c182eaacae63a7c03' + 'a2ec378bf79dfb9a1b1418d7b2d341ff') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + patch -Np0 -i ../cairo-clock.patch + + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make prefix="${pkgdir}/usr" install +} |