Skip to content
Permalink
12d162295d
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 45 lines (33 sloc) 859 Bytes
#!/usr/bin/env beesh
# BEE_VERSION attr-2.4.44-2
# more info: https://foo.bar.com
SRCURL[0]="https://download-mirror.savannah.gnu.org/releases/attr/attr-${PKGVERSION}.src.tar.gz attr-${PKGVERSION}.tar.gz"
# PATCHURL+=()
build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
#mee_configure() {
# bee_configure
#}
#mee_build() {
# bee_build
#}
mee_install() {
make install install-lib install-dev \
PKG_BIN_DIR=${D}${BINDIR} \
PKG_SBIN_DIR=${D}${SBINDIR} \
PKG_LIB_DIR=${D}${LIBDIR} \
PKG_DEVLIB_DIR=${D}${LIBEXECDIR} \
PKG_INC_DIR=${D}${INCLUDEDIR}/attr \
PKG_MAN_DIR=${D}${MANDIR} \
PKG_DOC_DIR=${D}${DATADIR}/doc/gtkhtml \
PKG_LOCALE_DIR=${D}${DATADIR}/locale
}
#mee_install_post() {
# exit
#}