17 lines
426 B
Plaintext
17 lines
426 B
Plaintext
# Description: A suite of programs for recording CDs and DVDs
|
|
# URL: http://cdrkit.org/
|
|
# Maintainer: Antti Nykanen, aon at iki dot fi
|
|
# Depends on: cmake, libcap
|
|
|
|
name=cdrkit
|
|
version=1.1.9
|
|
release=1
|
|
source=(http://cdrkit.org/releases/cdrkit-$version.tar.gz)
|
|
|
|
build () {
|
|
cd cdrkit-$version
|
|
sed -i 's:share/\(man\):\1:' 3rd-party/dirsplit/CMakeLists.txt
|
|
cmake -DCMAKE_INSTALL_PREFIX=$PKG/usr -DMANSUBDIR=man
|
|
make install
|
|
}
|