summaryrefslogtreecommitdiff
path: root/staging/easytag
diff options
context:
space:
mode:
Diffstat (limited to 'staging/easytag')
-rw-r--r--staging/easytag/PKGBUILD28
-rw-r--r--staging/easytag/easytag.install11
2 files changed, 39 insertions, 0 deletions
diff --git a/staging/easytag/PKGBUILD b/staging/easytag/PKGBUILD
new file mode 100644
index 000000000..eb59f4ae0
--- /dev/null
+++ b/staging/easytag/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 159784 2012-05-26 23:49:07Z tomegun $
+# Maintainer:
+# Contributor: Kevin Piche <kevin@archlinux.org>
+# Contributor: Aaron Griffin <aaron@archlinux.org>
+# Contributor: dorphell <dorphell@archlinux.org>
+
+pkgname=easytag
+pkgver=2.1.7
+pkgrel=2
+pkgdesc="Utility for viewing, editing and writing ID3 tags of your MP3 files"
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://easytag.sourceforge.net/'
+depends=('id3lib' 'libid3tag' 'gtk2' 'libvorbis' 'flac' 'speex' 'wavpack' 'desktop-file-utils')
+install=${pkgname}.install
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('9df3e800d80e754670642f2ba5e03539')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir} install
+}
diff --git a/staging/easytag/easytag.install b/staging/easytag/easytag.install
new file mode 100644
index 000000000..93908edac
--- /dev/null
+++ b/staging/easytag/easytag.install
@@ -0,0 +1,11 @@
+post_install() {
+ [[ -x usr/bin/update-desktop-database ]] && update-desktop-database -q || true
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}