Created
January 20, 2015 01:44
-
-
Save MadeOfMagicAndWires/0636c896401ea43a4221 to your computer and use it in GitHub Desktop.
id3tool PKGBUILD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Desperately needs a package() function. | |
# Maintainer: Kaiting Chen <[email protected]> | |
# Contributor: Andrea Scarpino <[email protected]> | |
# Contributor: Joost Bremmer <toost dot b at gmail dot com> | |
pkgname='id3tool' | |
pkgver='1.2a' | |
pkgrel='4' | |
pkgdesc='A command line editor for ID3 tags in MP3 files' | |
arch=('i686' 'x86_64') | |
url='http://nekohako.xware.cx/id3tool/' | |
license=('GPL') | |
md5sums=('061185562c0d0e6327406d9fc2f194b2') | |
source=("$url$pkgname-$pkgver.tar.gz") | |
build() { | |
cd "${srcdir}/${pkgname}-${pkgver}" | |
./configure --prefix=/usr --mandir=/usr/share/man | |
make | |
} | |
package(){ | |
cd "${srcdir}/${pkgname}-${pkgver}" | |
make DESTDIR=$pkgdir install | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment