summaryrefslogtreecommitdiff
path: root/community-testing
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-24 00:01:46 +0000
committerroot <root@rshg054.dnsready.net>2012-07-24 00:01:46 +0000
commit56913dc8679143308408596f2872f3894b3ab9d0 (patch)
tree6a8108f4290a1841aacb64924af58ad547790aa5 /community-testing
parenta65eb6fe2ea0ffa22c65de34506c88aeeb3c88ee (diff)
Tue Jul 24 00:01:46 UTC 2012
Diffstat (limited to 'community-testing')
-rw-r--r--community-testing/mashup/PKGBUILD30
-rw-r--r--community-testing/tagpy/PKGBUILD9
2 files changed, 37 insertions, 2 deletions
diff --git a/community-testing/mashup/PKGBUILD b/community-testing/mashup/PKGBUILD
new file mode 100644
index 000000000..d1d1bacd0
--- /dev/null
+++ b/community-testing/mashup/PKGBUILD
@@ -0,0 +1,30 @@
+# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
+# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
+
+pkgname=mashup
+pkgver=3.5
+pkgrel=3
+pkgdesc="Adjusting images on a sheet of paper for printing"
+url="http://kornelix.squarespace.com/$pkgname"
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('gtk3')
+replaces=('printoxx')
+source=("http://kornelix.squarespace.com/storage/downloads/$pkgname-$pkgver.tar.gz")
+md5sums=('454b08e5589f93b3bdd4577c2578ae36')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ sed -i 's+xdg-deskto+#xdg-deskto+' Makefile
+ sed -i 's/--libs gtk+-3.0/--libs gtk+-3.0 gthread-2.0/' Makefile
+ make PREFIX=/usr
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ install -Dm644 desktop $pkgdir/usr/share/applications/$pkgname.desktop
+ make DESTDIR=$pkgdir install
+ rm $pkgdir/usr/share/applications/kornelix-$pkgname.desktop
+ rm $pkgdir/usr/share/doc/$pkgname/$pkgname.man
+}
+
diff --git a/community-testing/tagpy/PKGBUILD b/community-testing/tagpy/PKGBUILD
index 8ec45754e..0a7ae1a26 100644
--- a/community-testing/tagpy/PKGBUILD
+++ b/community-testing/tagpy/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 73777 2012-07-15 13:21:02Z ibiru $
+# $Id: PKGBUILD 74159 2012-07-22 13:24:09Z jelle $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Callan Barrett <wizzomafizzo@gmail.com>
# Contributor: Scott Horowitz <stonecrest@gmail.com>
pkgname=tagpy
pkgver=0.94.8
-pkgrel=8
+pkgrel=9
pkgdesc="Python bindings for TagLib"
arch=('i686' 'x86_64')
url="http://pypi.python.org/pypi/tagpy"
@@ -34,3 +34,8 @@ package(){
python2 setup.py install --root="${pkgdir}" --optimize=1
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}
+
+check(){
+ cd ${srcdir}/${pkgname}-${pkgver}
+ python2 setup.py test
+}