opt/cdrkit/Pkgfile

23 lines
720 B
Plaintext
Raw Normal View History

2008-10-14 12:18:29 +02:00
# Description: A suite of programs for recording CDs and DVDs
2021-12-13 18:48:11 +01:00
# URL: https://en.wikipedia.org/wiki/Cdrkit
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: file libcap
2008-10-14 12:18:29 +02:00
name=cdrkit
2010-12-19 16:41:09 +01:00
version=1.1.11
2021-12-13 18:48:11 +01:00
release=5
source=(http://pkgs.fedoraproject.org/repo/pkgs/cdrkit/cdrkit-1.1.11.tar.gz/efe08e2f3ca478486037b053acd512e9/cdrkit-1.1.11.tar.gz
2014-02-18 20:09:36 +01:00
cdrkit-1.1.9-efi-boot.patch)
2008-10-14 12:18:29 +02:00
build () {
2021-01-27 17:44:53 +01:00
patch -d $name-$version -p1 -i $SRC/cdrkit-1.1.9-efi-boot.patch
2021-12-13 18:48:11 +01:00
cmake -S $name-$version -B build -G Ninja \
2021-01-27 17:44:53 +01:00
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -fcommon" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D MANSUBDIR=share/man \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
2008-10-14 12:18:29 +02:00
}