Skip to content
Permalink
83e0d7979c
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
@wwwutz
Latest commit 25eecc5 Feb 7, 2020 History
- be0ify
- fixed SRCURL
1 contributor

Users who have contributed to this file

executable file 42 lines (28 sloc) 710 Bytes
#!/usr/bin/env beesh
# BEE_VERSION ctags-5.8-1
# more info: https://foo.bar.com
# SRCURL[0]="http://prdownloads.sourceforge.net/ctags/ctags-${PKGVERSION}.tar.gz"
SRCURL[0]="/src/mariux/md5repo/c00f82ecdcc357434731913e5b48630d/ctags-5.8.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() {
mkdir -p ${D}${BINDIR}
cp ctags ${D}${BINDIR}/ctags
chmod 755 ${D}${BINDIR}/ctags
mkdir -p ${D}${MANDIR}/man1
cp ${S}/ctags.1 ${D}${MANDIR}/man1/ctags.1
chmod 644 ${D}${MANDIR}/man1/ctags.1
}