Skip to content
Permalink
077d6ef2a4
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
- be0ify
- fix SRCURL
- clean up installation
- remove smake
```
bee remove smake-1.2a49-0.x86_64
bee update cdrtools-3.02a09-0
```
1 contributor

Users who have contributed to this file

executable file 39 lines (29 sloc) 732 Bytes
#!/bin/env beesh
# BEE_VERSION cdrtools-3.02a09-0
SRCURL[0]="https://downloads.sourceforge.net/cdrtools/cdrtools-${PKGVERSION}.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() {
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/libparanoia
}