summaryrefslogtreecommitdiff
path: root/community/gsimplecal/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/gsimplecal/PKGBUILD')
-rw-r--r--community/gsimplecal/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/gsimplecal/PKGBUILD b/community/gsimplecal/PKGBUILD
new file mode 100644
index 000000000..d469f7621
--- /dev/null
+++ b/community/gsimplecal/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 76303 2012-09-15 15:56:51Z jsteel $
+# Maintainer: Jonathan Steel <mail at jsteel dot org>
+# Contributor: DrZaius <lou at fakeoutdoorsman dot com>
+# Contributor: Victor Feight <vrfeight3 at gmail dot com>
+
+pkgname=gsimplecal
+pkgver=1.6
+pkgrel=1
+pkgdesc="Simple and lightweight GTK calendar"
+arch=('i686' 'x86_64')
+url="http://dmedvinsky.github.com/$pkgname"
+license=('BSD')
+depends=('gtk2')
+source=(https://github.com/downloads/dmedvinsky/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('05a596de37491e52b646a0c71ec14841')
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ ./configure --prefix=/usr
+
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ make DESTDIR="$pkgdir" install
+
+ install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}