diff options
author | Cedric Schieli <cschieli@gmail.com> | 2010-06-01 12:37:47 +0000 |
---|---|---|
committer | Cedric Schieli <cschieli@gmail.com> | 2010-06-01 12:37:47 +0000 |
commit | 10b8b99e48384b4470cac1330080c12d2ade01de (patch) | |
tree | 7bb4ad6cd94a2c9a960fd9a4532d123eee5151d5 /main/xfce4-notes-plugin | |
parent | 9252f1cfd78299b137400ed8169a79f7f833daac (diff) | |
parent | c6c0b6f9dbde1244e7b31f74c703178a867e873f (diff) | |
download | aports-to-upstream.tar.bz2 aports-to-upstream.tar.xz |
Merge remote branch 'upstream/master' into to-upstreamto-upstream
Diffstat (limited to 'main/xfce4-notes-plugin')
-rw-r--r-- | main/xfce4-notes-plugin/APKBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/main/xfce4-notes-plugin/APKBUILD b/main/xfce4-notes-plugin/APKBUILD new file mode 100644 index 00000000..4c8870cd --- /dev/null +++ b/main/xfce4-notes-plugin/APKBUILD @@ -0,0 +1,36 @@ +# Contributor: +# Maintainer: +pkgname=xfce4-notes-plugin +pkgver=1.7.4 +pkgrel=0 +pkgdesc="Notes plugin for the Xfce4 desktop" +url="http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin" +license="GPL" +depends= +makedepends="xfce4-panel-dev libunique-dev" +install= +subpackages= +source="http://archive.xfce.org/src/panel-plugins/xfce4-notes-plugin/1.7/xfce4-notes-plugin-$pkgver.tar.bz2" + +_builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + cd "$_builddir" + # apply patches here +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install +} + +md5sums="47bd8d19d807a471d9d4d09db2ebafb6 xfce4-notes-plugin-1.7.4.tar.bz2" |