mirror of
https://github.com/archlinux/aur.git
synced 2026-03-06 11:52:52 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
f0137f647c
2 changed files with 35 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
pkgbase = flactagger
|
||||
pkgdesc = A Ruby script for tagging FLAC files
|
||||
pkgver = 3.1.1
|
||||
pkgrel = 1
|
||||
url = http://flactagger.berlios.de/
|
||||
arch = any
|
||||
license = GPL3
|
||||
depends = ruby
|
||||
depends = flac
|
||||
source = http://download.berlios.de/flactagger/flactagger-3.1.1.tar.bz2
|
||||
md5sums = 72282bb6b0b7a29249f9193795cd6d6e
|
||||
|
||||
pkgname = flactagger
|
||||
|
||||
21
PKGBUILD
Normal file
21
PKGBUILD
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
|
||||
pkgname=flactagger
|
||||
pkgver=3.1.1
|
||||
pkgrel=1
|
||||
pkgdesc="A Ruby script for tagging FLAC files"
|
||||
arch=('any')
|
||||
url="http://flactagger.berlios.de/"
|
||||
license=('GPL3')
|
||||
depends=('ruby' 'flac')
|
||||
source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.bz2)
|
||||
|
||||
md5sums=('72282bb6b0b7a29249f9193795cd6d6e')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/$pkgname-$pkgver
|
||||
|
||||
ruby setup.rb config || return 1
|
||||
ruby setup.rb setup || return 1
|
||||
ruby setup.rb install --prefix=${pkgdir} || return 1
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue