mirror of
https://github.com/archlinux/aur.git
synced 2026-03-01 22:15:10 +01:00
commit
a8e993dc86
3 changed files with 68 additions and 0 deletions
20
.SRCINFO
Normal file
20
.SRCINFO
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
pkgbase = moosic
|
||||
pkgdesc = Music daemon with extensible format support (includes command line client)
|
||||
pkgver = 1.5.6
|
||||
pkgrel = 2
|
||||
url = http://www.nanoo.org/moosic
|
||||
arch = any
|
||||
license = custom:unlicense
|
||||
depends = python2>=2.7.2
|
||||
depends = findutils
|
||||
optdepends = mpg123: MP3 support
|
||||
optdepends = vorbis-tools: Ogg Vorbis support
|
||||
optdepends = timidity++: MIDI support
|
||||
optdepends = mikmod: MOD, various other format support
|
||||
optdepends = sox: WAV, various other support
|
||||
optdepends = takcd: CD audio support
|
||||
source = http://www.nanoo.org/moosic/download/moosic-1.5.6.tar.gz
|
||||
md5sums = 2bc5829d27f1aa5cc7f550517d205c75
|
||||
|
||||
pkgname = moosic
|
||||
|
||||
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
*/src
|
||||
*/pkg
|
||||
*.gz
|
||||
*.xz
|
||||
*.bz2
|
||||
*.zip
|
||||
*.part
|
||||
*.sig
|
||||
*.sign
|
||||
*.txt
|
||||
*.log
|
||||
*.scm
|
||||
*/*.pkg
|
||||
*/*.asc
|
||||
34
PKGBUILD
Normal file
34
PKGBUILD
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Contributor: Lex Black <autumn-wind at web dot de>
|
||||
# Contributor: Kipling Inscore <k@bijna.net>
|
||||
|
||||
pkgname=moosic
|
||||
pkgver=1.5.6
|
||||
pkgrel=2
|
||||
pkgdesc="Music daemon with extensible format support (includes command line client)"
|
||||
url="http://www.nanoo.org/moosic"
|
||||
arch=(any)
|
||||
# moosic does not refer to GPL version number but License.txt and the link on the webpage are version 2
|
||||
license=('custom:unlicense')
|
||||
# Python 2.7.2 may be overly cautious, but build/test failed previously with 2.6 and earlier
|
||||
# Earlier versions of 2.7 have not been tested
|
||||
depends=('python2>=2.7.2' 'findutils')
|
||||
# moosic can control almost any media player program
|
||||
# and is not actually limited to audio formats
|
||||
# The optdepends list would be too long if comprehensive,
|
||||
# so I've included only the programs in the default config file
|
||||
optdepends=('mpg123: MP3 support'
|
||||
'vorbis-tools: Ogg Vorbis support'
|
||||
'timidity++: MIDI support'
|
||||
'mikmod: MOD, various other format support'
|
||||
'sox: WAV, various other support'
|
||||
'takcd: CD audio support')
|
||||
source=("http://www.nanoo.org/moosic/download/$pkgname-$pkgver.tar.gz")
|
||||
md5sums=('2bc5829d27f1aa5cc7f550517d205c75')
|
||||
|
||||
|
||||
package() {
|
||||
cd $srcdir/$pkgname-$pkgver
|
||||
|
||||
python2 setup.py install --root=$pkgdir/ --optimize=1
|
||||
install -Dm644 License.txt $pkgdir/usr/share/licenses/$pkgname/License.txt
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue