Skip to content
Permalink
master
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 38 lines (27 sloc) 949 Bytes
#!/usr/bin/env beesh
# BEE_VERSION discount-2.2.7-1
# more info: http://www.pell.portland.or.us/~orc/Code/discount/
# add libmarkdown
# build instructions from arch
# https://github.com/archlinux/svntogit-packages/blob/packages/discount/trunk/PKGBUILD
SRCURL[0]="http://www.pell.portland.or.us/~orc/Code/discount/discount-${PKGVERSION}.tar.bz2"
#PATCHURL+=( "https://github.com/Orc/discount/commit/55cea9c5.patch" )
PATCHURL+=("https://beehive.molgen.mpg.de/9a800dfa0ecf5a1124b7355894f4f71c/55cea9c5.patch")
build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
mee_patch() {
bee_patch "${@}"
sed -i '/ test "$LDCONFIG"/ s,^.,\#,' configure.inc
}
mee_configure() {
./configure.sh --prefix=/usr --enable-all-features --with-fenced-code --shared
}
mee_build() {
start_cmd make ${BEE_MAKEFLAGS} -j1 ${DEFCONFIG} "$@"
}
mee_install() {
start_cmd make DESTDIR=${D} install.everything
}