mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
919 B
Bash
29 lines
919 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=streamripper
|
|
pkgver=1.64.6
|
|
pkgrel=2
|
|
pkgdesc="Records and splits streaming mp3 into tracks"
|
|
arch=('i686' 'x86_64')
|
|
url="http://streamripper.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('glibc' 'glib2' 'libmad' 'faad2>=2.7' 'libvorbis')
|
|
options=('!libtool')
|
|
categories=('multimedia')
|
|
source=(http://downloads.sourceforge.net/sourceforge/streamripper/streamripper-$pkgver.tar.gz)
|
|
md5sums=('a37a1a8b8f9228522196a122a1c2dd32')
|
|
sha1sums=('bc8a8d3ad045e0772ca691d2063c39efcc0dca45')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
} |