diff options
author | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-17 00:58:52 -0700 |
commit | dee9f17b595ea903a982d31d1124b302bb17e2ff (patch) | |
tree | 295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/clamz | |
parent | 380530d02a5449fdef97b63b394a6743c3de0092 (diff) |
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/clamz')
-rw-r--r-- | community/clamz/PKGBUILD | 31 | ||||
-rw-r--r-- | community/clamz/clamz.install | 16 |
2 files changed, 0 insertions, 47 deletions
diff --git a/community/clamz/PKGBUILD b/community/clamz/PKGBUILD deleted file mode 100644 index ada02b3dc..000000000 --- a/community/clamz/PKGBUILD +++ /dev/null @@ -1,31 +0,0 @@ -# $Id: PKGBUILD 57215 2011-10-24 18:32:20Z lfleischer $ -# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> -# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> - -pkgname=clamz -pkgver=0.5 -pkgrel=1 -pkgdesc="Command-line program to download MP3 files from Amazon.com's music store." -arch=('i686' 'x86_64') -url='http://code.google.com/p/clamz/' -license=('GPL3') -depends=('libgcrypt' 'curl' 'expat' 'shared-mime-info' 'desktop-file-utils') -install='clamz.install' -source=("http://clamz.googlecode.com/files/clamz-${pkgver}.tar.gz") -md5sums=('84543c9346b285bdc218879e241941a8') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # Fix issue with update-mime-database - sed -i 's|$(UPDATE_DESKTOP_DATABASE)\ $(DESTDIR)$(applications_dir)||' Makefile.in - sed -i 's|$(UPDATE_MIME_DATABASE)\ $(DESTDIR)$(mime_dir)||' Makefile.in - - ./configure --prefix=/usr/ - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install -} diff --git a/community/clamz/clamz.install b/community/clamz/clamz.install deleted file mode 100644 index 7daacb23a..000000000 --- a/community/clamz/clamz.install +++ /dev/null @@ -1,16 +0,0 @@ -post_install() { - update-mime-database /usr/share/mime - update-desktop-database -q -} - -post_upgrade() { - update-mime-database /usr/share/mime - update-desktop-database -q -} - -post_remove() { - update-mime-database /usr/share/mime - update-desktop-database -q -} - -# vim:set ts=2 sw=2 et: |