summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 340e3e478a223a82bda271d30f0ae8b2fd8db16a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

pkgname=id3ren
pkgver=master
pkgrel=1

pkgdesc="Batch rename mp3 files by reading ID3 tags"
arch=('i686' 'x86_64')
url="https://github.com/sebcode/id3ren"
license=('GPL')
source=('https://github.com/sebcode/id3ren/archive/master.zip')
md5sums=('e3cba13748f2670b1392d17223592756')

build() {
	cd "$pkgname-$pkgver"
	make
}

package() {
	cd "$pkgname-$pkgver"
	make DESTDIR="$pkgdir/" install
}