diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/clamz | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 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, 47 insertions, 0 deletions
diff --git a/community/clamz/PKGBUILD b/community/clamz/PKGBUILD new file mode 100644 index 000000000..ada02b3dc --- /dev/null +++ b/community/clamz/PKGBUILD @@ -0,0 +1,31 @@ +# $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 new file mode 100644 index 000000000..7daacb23a --- /dev/null +++ b/community/clamz/clamz.install @@ -0,0 +1,16 @@ +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: |