Skip to content
Permalink
128efab45d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 42 lines (32 sloc) 845 Bytes
#!/bin/env beesh
# BEE_VERSION cdrtools-3.02a09-1
# SRCURL[0]="https://downloads.sourceforge.net/cdrtools/cdrtools-${PKGVERSION}.tar.bz2"
SRCURL[0]="https://beehive.molgen.mpg.de/1e224a6adbbe4ad40047b9fddbb0e60c/cdrtools-3.02a09.tar.bz2"
PATCHURL[0]=""
BEE_MAKEFLAGS=-j1
#mee_extract() {
# bee_extract ${@}
#}
#mee_patch() {
# bee_patch ${@}
#}
#mee_configure() {
# bee_configure
#}
mee_build() {
export GMAKE_NOWARN=true &&
make -j1 INS_BASE=${D} DEFINSUSR=root DEFINSGRP=root
}
mee_install() {
export GMAKE_NOWARN=true &&
make DESTDIR=${D} INS_BASE=${PREFIX} DEFINSUSR=root DEFINSGRP=root install
}
mee_install_post() {
cd ${D} && {
rm -vfr ${D}/usr/include
rm -vfr ${D}/usr/share/man/man{3,5}
rm -vrf ${D}/usr/lib/profiled
rm -vrf ${D}/usr/lib/*.a
rm -vrf ${D}/usr/share/doc
}
}