minor adjustments

This commit is contained in:
Josef Miegl 2019-02-07 17:01:51 +01:00
parent 474630abba
commit dd214fd391
2 changed files with 10 additions and 12 deletions

View File

@ -17,7 +17,6 @@ pkgbase = butt
depends = flac depends = flac
depends = opus depends = opus
depends = libsamplerate depends = libsamplerate
optdepends = icecast
source = http://sourceforge.net/projects/butt/files/butt/butt-0.1.17/butt-0.1.17.tar.gz source = http://sourceforge.net/projects/butt/files/butt/butt-0.1.17/butt-0.1.17.tar.gz
sha256sums = afe9596b1d9ef38d2fde1f3255e5a3a12b206c73c8e6601e37cccb07e67ae33d sha256sums = afe9596b1d9ef38d2fde1f3255e5a3a12b206c73c8e6601e37cccb07e67ae33d

View File

@ -10,39 +10,38 @@ arch=('i686' 'x86_64' 'armv7h')
license=('GPL2') license=('GPL2')
url="http://butt.sourceforge.net/" url="http://butt.sourceforge.net/"
depends=('fltk' 'libpng12' 'portaudio' 'libfdk-aac' 'libvorbis' 'libogg' 'lame' 'flac' 'opus' 'libsamplerate') depends=('fltk' 'libpng12' 'portaudio' 'libfdk-aac' 'libvorbis' 'libogg' 'lame' 'flac' 'opus' 'libsamplerate')
optdepends=('icecast') source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz")
source=("http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('afe9596b1d9ef38d2fde1f3255e5a3a12b206c73c8e6601e37cccb07e67ae33d') sha256sums=('afe9596b1d9ef38d2fde1f3255e5a3a12b206c73c8e6601e37cccb07e67ae33d')
build() { build() {
cd "$pkgname-$pkgver" cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr ./configure --prefix=/usr
make make
} }
package() { package() {
cd "$pkgname-$pkgver" cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="$pkgdir/" install make DESTDIR="${pkgdir}" install
# Desktop file # Desktop file
install -D -m644 "usr/share/applications/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop" install -Dm644 "usr/share/applications/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
# Icons # Icons
for size in 16 22 24 32 48 64 96 128 256 512; do for size in 16 22 24 32 48 64 96 128 256 512; do
format="${size}x${size}" format="${size}x${size}"
install -D -m644 "icons/icon_${format}.png" "$pkgdir/usr/share/icons/hicolor/${format}/apps/$pkgname.png" install -Dm644 "icons/icon_${format}.png" "${pkgdir}/usr/share/icons/hicolor/${format}/apps/${pkgname}.png"
done done
install -D -m644 "icons/icon_scalable.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/$pkgname.svg" install -Dm644 "icons/icon_scalable.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
# Documentation # Documentation
for doc in AUTHORS ChangeLog KNOWN_BUGS NEWS README THANKS; do for doc in AUTHORS ChangeLog KNOWN_BUGS NEWS README THANKS; do
install -D -m644 "${doc}" "$pkgdir/usr/share/doc/$pkgname/${doc}" install -Dm644 "${doc}" "${pkgdir}/usr/share/doc/${pkgname}/${doc}"
done done
# Pixmaps # Pixmaps
for file in usr/share/pixmaps/"$pkgname"*; do for file in usr/share/pixmaps/"${pkgname}"*; do
filename=`basename "${file}"` filename=`basename "${file}"`
install -D -m644 "${file}" "$pkgdir/usr/share/pixmaps/${filename}" install -Dm644 "${file}" "${pkgdir}/usr/share/pixmaps/${filename}"
done done
} }