diff options
Diffstat (limited to 'community/isomaster')
-rw-r--r-- | community/isomaster/PKGBUILD | 30 | ||||
-rw-r--r-- | community/isomaster/isomaster-1.3.9-asneeded.patch | 14 | ||||
-rw-r--r-- | community/isomaster/isomaster.install | 11 |
3 files changed, 0 insertions, 55 deletions
diff --git a/community/isomaster/PKGBUILD b/community/isomaster/PKGBUILD deleted file mode 100644 index 5e32e9ac9..000000000 --- a/community/isomaster/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 73565 2012-07-09 23:28:25Z ebelanger $ -# Maintainer: Roman Kyrylych <roman@archlinux.org> -# Maintainer: Mateusz Herych <heniekk@gmail.com> -# Contributor: Mefju <mefju@o2.pl> - -pkgname=isomaster -pkgver=1.3.9 -pkgrel=1 -pkgdesc="CD image editor written in GTK2" -arch=('i686' 'x86_64' 'mips64el') -url="http://littlesvr.ca/isomaster" -license=('GPL2') -depends=('gtk2' 'desktop-file-utils') -makedepends=('iniparser') -install=isomaster.install -source=("http://littlesvr.ca/isomaster/releases/$pkgname-$pkgver.tar.bz2" - isomaster-1.3.9-asneeded.patch) -md5sums=('ba7b44303979fd193df04b8f5f7ce4f8' - '79ac690bd7edf69dfb53e9916fc1182d') - -build() { - cd "$srcdir/$pkgname-$pkgver" - patch -p0 -i ../isomaster-1.3.9-asneeded.patch - make PREFIX=/usr -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr DESTDIR="$pkgdir" install -} diff --git a/community/isomaster/isomaster-1.3.9-asneeded.patch b/community/isomaster/isomaster-1.3.9-asneeded.patch deleted file mode 100644 index 102f54db4..000000000 --- a/community/isomaster/isomaster-1.3.9-asneeded.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- Makefile -+++ Makefile -@@ -75,9 +75,9 @@ - isomaster: $(OBJECTS) lib iniparser - @echo 'Linking isomaster' - ifndef USE_SYSTEM_INIPARSER -- @$(CC) $(LDFLAGS) `pkg-config --libs gtk+-2.0` $(OBJECTS) bk/bk.a iniparser-2.17/libiniparser.a -o isomaster -+ @$(CC) $(LDFLAGS) $(OBJECTS) -o isomaster bk/bk.a iniparser-2.17/libiniparser.a `pkg-config --libs gtk+-2.0` - else -- @$(CC) $(LDFLAGS) `pkg-config --libs gtk+-2.0` $(OBJECTS) bk/bk.a -liniparser -o isomaster -+ @$(CC) $(LDFLAGS) $(OBJECTS) -o isomaster bk/bk.a -liniparser `pkg-config --libs gtk+-2.0` - endif - - # static pattern rule diff --git a/community/isomaster/isomaster.install b/community/isomaster/isomaster.install deleted file mode 100644 index 5e5cfef4d..000000000 --- a/community/isomaster/isomaster.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - update-desktop-database -q -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - update-desktop-database -q -} |