Skip to content
Permalink
update-libxslt…
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
- SRCURL
- fix symlinks
- clean up
2 contributors

Users who have contributed to this file

@donald @wwwutz
executable file 40 lines (28 sloc) 702 Bytes
#!/usr/bin/env beesh
# BEE_VERSION msmtp-1.8.12-1
# SRCURL[0]="https://marlam.de/msmtp/releases/msmtp-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/f45025b7a6512d71a54c35f49ccd9bca/msmtp-1.8.12.tar.xz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
bee_configure \
--disable-nls
}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install
mkdir -p ${D}${SBINDIR}
mkdir -p ${D}${LIBDIR}
ln -vs msmtp ${D}${BINDIR}/sendmail
ln -vs ${BINDIR}/msmtp ${D}${SBINDIR}/sendmail
ln -vs ${BINDIR}/msmtp ${D}${LIBDIR}/sendmail
}