mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
26 lines
689 B
Bash
26 lines
689 B
Bash
# contribution from Arch https://www.archlinux.org/packages/community/x86_64/twolame/
|
|
|
|
pkgname=twolame
|
|
pkgver=0.3.13
|
|
pkgrel=1
|
|
pkgdesc="An optimized MPEG Audio Layer 2 (MP2) encoder"
|
|
arch=('x86_64')
|
|
url="http://www.twolame.org/"
|
|
license=('LGPL')
|
|
depends=('libsndfile')
|
|
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
sha512sums=('241ae5faebf05cb919959bb0545cb89e9b71cfb07f92a7118d864499ea4f0065ddaa646ab1482ffbcbca427d52c2436764074bd67fd19a1eb9979987f23163f7')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
} |