blob: 3e630f1da5d4b848169518455da1ee7f8f4aba94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: Lecteur de données Méta audio implémenté en pure python
# URL: http://code.google.com/p/mutagen/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: python
name=mutagen
version=1.18
release=1
source=(http://mutagen.googlecode.com/files/$name-$version.tar.gz)
build() {
cd $name-$version
python setup.py install --root=$PKG
mkdir -p $PKG/usr/bin
install -m755 tools/* $PKG/usr/bin
}
|