-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION ccid-1.4.31-0 | ||
|
||
# more info: https://ccid.apdu.fr/ | ||
|
||
SRCURL[0]="https://ccid.apdu.fr/files/ccid-${PKGVERSION}.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,210 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION citrix-workspace-app-19.10.0.15-0 | ||
|
||
# more info: https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html | ||
# | ||
# never execute the provided installer. Its total junk. | ||
# | ||
# To use the package, this has to be done for each new user: | ||
# | ||
# mkdir -p $HOME/.ICAClient/cache | ||
# cp /opt/Citrix/ICAClient/config/{All_Regions,Trusted_Region,Unknown_Region,canonicalization,regions}.ini $HOME/.ICAClient/ | ||
# | ||
# maybe we do this from a wrapper in a future build | ||
|
||
SRCURL[0]="/src/mariux/download/citrix_workspace_app-${PKGVERSION}.tgz" | ||
|
||
# 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() { | ||
|
||
# stolen from | ||
# https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=icaclient | ||
|
||
srcdir="$S" | ||
pkgdir=$D | ||
|
||
ICAROOT=/opt/Citrix/ICAClient | ||
ICADIR="$srcdir/linuxx64/linuxx64.cor" | ||
mkdir -p "${pkgdir}$ICAROOT" | ||
|
||
cd "$ICADIR" | ||
install -m755 wfica *.so *.DLL AuthManagerDaemon PrimaryAuthManager ServiceRecord selfservice "${pkgdir}$ICAROOT" | ||
|
||
# copy directories | ||
cp -r ./config/ "${pkgdir}$ICAROOT" | ||
cp -r ./gtk/ "${pkgdir}$ICAROOT" | ||
cp -r ./help/ "${pkgdir}$ICAROOT" | ||
cp -r ./keyboard/ "${pkgdir}$ICAROOT" | ||
cp -r ./keystore/ "${pkgdir}$ICAROOT" | ||
cp -r ./lib/ "${pkgdir}$ICAROOT" | ||
cp -r ./icons/ "${pkgdir}$ICAROOT" | ||
cp -r ./nls/ "${pkgdir}$ICAROOT" | ||
cp -r ./site/ "${pkgdir}$ICAROOT" | ||
cp -r ./usb/ "${pkgdir}$ICAROOT" | ||
cp -r ./util/ "${pkgdir}$ICAROOT" | ||
|
||
# Install License | ||
install -m644 -D nls/en.UTF-8/eula.txt \ | ||
"${pkgdir}$ICAROOT/eula.txt" | ||
|
||
# create /config/.server to enable user customization using ~/.ICACLient/ overrides. Thanks Tomek | ||
touch "${pkgdir}$ICAROOT/config/.server" | ||
|
||
# # Extract system ca-certificates and install in the Citrix cacerts directory | ||
# cp /etc/ca-certificates/extracted/tls-ca-bundle.pem "${pkgdir}$ICAROOT/keystore/cacerts/" | ||
# cd "${pkgdir}$ICAROOT/keystore/cacerts/" | ||
# awk 'BEGIN {c=0;} /BEGIN CERT/{c++} { print > "cert." c ".pem"}' < tls-ca-bundle.pem | ||
|
||
# The following 32-bit library causes false namcap errors | ||
# rm util/libgstflatstm.32.so | ||
|
||
# # Install wrapper script | ||
# install -m755 "${srcdir}/wfica.sh" "${pkgdir}$ICAROOT/wfica.sh" | ||
|
||
# Dirty Hack | ||
# wfica expects {module,wfclient,apssrv}.ini in $ICAROOT/config | ||
# sadly these configs differ slightly by locale | ||
lang=${LANG%%_*} | ||
if [[ ! -d "${pkgdir}/$ICAROOT/nls/$lang" ]]; then | ||
lang='en' | ||
fi | ||
cp "${pkgdir}$ICAROOT/nls/$lang/module.ini" "${pkgdir}/$ICAROOT/config/" | ||
cp "${pkgdir}$ICAROOT/nls/$lang/appsrv.template" "${pkgdir}/$ICAROOT/config/appsrv.ini" | ||
cp "${pkgdir}$ICAROOT/nls/$lang/wfclient.template" "${pkgdir}/$ICAROOT/config/wfclient.ini" | ||
|
||
# Copy Firefox plugin into plugin directory | ||
mkdir -p "${pkgdir}/usr/lib/mozilla/plugins" | ||
ln -s "$ICAROOT/npica.so" "${pkgdir}"/usr/lib/mozilla/plugins/npica.so | ||
cd "${srcdir}" | ||
# install freedesktop.org files | ||
# install -Dm644 wfica.desktop "${pkgdir}/usr/share/applications/wfica.desktop" | ||
# install -Dm644 conncenter.desktop "${pkgdir}/usr/share/applications/conncentre.desktop" | ||
# install -Dm644 configmgr.desktop "${pkgdir}/usr/share/applications/configmgr.desktop" | ||
# install -Dm644 selfservice.desktop "${pkgdir}/usr/share/applications/wfcmgr.desktop" | ||
mkdir -p "${pkgdir}/usr/share/applications/" | ||
cat <<'EOF' >"${pkgdir}/usr/share/applications/wfica.desktop" | ||
[Desktop Entry] | ||
Encoding=UTF-8 | ||
Version=1.0 | ||
Type=Application | ||
Name=Citrix Receiver Engine | ||
StartupWMClass=Wfica | ||
NoDisplay=true | ||
Categories=Application;Network;X-Red-Hat-Base;X-SuSE-Core-Internet; | ||
MimeType=application/x-ica; | ||
Icon=/opt/Citrix/ICAClient/icons/manager.png | ||
TryExec=/opt/Citrix/ICAClient/wfica.sh | ||
Exec=/opt/Citrix/ICAClient/wfica.sh | ||
EOF | ||
cat <<'EOF' >"${pkgdir}/usr/share/applications/conncentre.desktop" | ||
[Desktop Entry] | ||
Encoding=UTF-8 | ||
Version=1.0 | ||
Type=Application | ||
Name=Citrix Connection Centre | ||
NoDisplay=false | ||
Categories=Application;Network;X-Red-Hat-Base;X-SuSE-Core-Internet; | ||
Icon=/opt/Citrix/ICAClient/icons/manager.png | ||
TryExec=/opt/Citrix/ICAClient/util/conncenter | ||
Exec=/opt/Citrix/ICAClient/util/conncenter --icaroot /opt/Citrix/ICAClient | ||
EOF | ||
cat <<'EOF' >"${pkgdir}/usr/share/applications/configmgr.desktop" | ||
[Desktop Entry] | ||
Encoding=UTF-8 | ||
Version=1.0 | ||
Type=Application | ||
Name=Citrix Receiver Preferences | ||
NoDisplay=false | ||
Categories=Application;Network;X-Red-Hat-Base;X-SuSE-Core-Internet; | ||
Icon=/opt/Citrix/ICAClient/icons/manager.png | ||
TryExec=/opt/Citrix/ICAClient/util/configmgr | ||
Exec=/opt/Citrix/ICAClient/util/configmgr --icaroot /opt/Citrix/ICAClient | ||
EOF | ||
cat <<'EOF' > "${pkgdir}/usr/share/applications/wfcmgr.desktop" | ||
[Desktop Entry] | ||
Encoding=UTF-8 | ||
Version=1.0 | ||
Type=Application | ||
Name=Citrix Receiver Self Service | ||
Categories=Application;Network;X-Red-Hat-Base;X-SuSE-Core-Internet; | ||
Icon=/opt/Citrix/ICAClient/icons/manager.png | ||
TryExec=/opt/Citrix/ICAClient/selfservice | ||
Exec=/opt/Citrix/ICAClient/selfservice --icaroot /opt/Citrix/ICAClient | ||
EOF | ||
|
||
# install scripts | ||
# install -Dm755 wfica.sh "${pkgdir}$ICAROOT" | ||
# install -Dm755 wfica_assoc.sh "${pkgdir}$ICAROOT" | ||
cat <<'EOF' >"${pkgdir}$ICAROOT/wfica.sh" | ||
#!/bin/sh | ||
export ICAROOT=/opt/Citrix/ICAClient | ||
${ICAROOT}/wfica -file "$1" | ||
EOF | ||
chmod 755 "${pkgdir}$ICAROOT/wfica.sh" | ||
cat <<'EOF' >"${pkgdir}$ICAROOT/wfica_assoc.sh" | ||
#!/bin/sh | ||
export ICAROOT=/opt/Citrix/ICAClient | ||
${ICAROOT}/wfica -associate -fileparam "$1" | ||
EOF | ||
chmod 755 "${pkgdir}$ICAROOT/wfica_assoc.sh" | ||
|
||
# # make certificates available | ||
# rm -r "${pkgdir}/opt/Citrix/ICAClient/keystore/cacerts" | ||
# ln -s /etc/ssl/certs "${pkgdir}/opt/Citrix/ICAClient/keystore/cacerts" | ||
# #ln -s /usr/share/ca-certificates/trust-source/* "${pkgdir}/opt/Citrix/ICAClient/keystore/cacerts/" | ||
# #c_rehash "${pkgdir}/opt/Citrix/ICAClient/keystore/cacerts/" | ||
|
||
cat<<'EOF' >"${pkgdir}/opt/Citrix/ICAClient/keystore/cacerts/T-TeleSec_GlobalRoot_Class_2.pem" | ||
subject=/CN=T-TeleSec GlobalRoot Class 2/OU=T-Systems Trust Center/O=T-Systems Enterprise Services GmbH/C=DE | ||
-----BEGIN CERTIFICATE----- | ||
MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx | ||
KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd | ||
BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl | ||
YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 | ||
OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy | ||
aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 | ||
ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G | ||
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd | ||
AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC | ||
FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi | ||
1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq | ||
jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ | ||
wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj | ||
QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ | ||
WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy | ||
NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC | ||
uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw | ||
IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 | ||
g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN | ||
9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP | ||
BSeOE6Fuwg== | ||
-----END CERTIFICATE----- | ||
EOF | ||
|
||
} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION libXdmcp-1.1.1-1 | ||
|
||
#SRCURL[0]="http://xorg.freedesktop.org/releases/individual/lib/libXdmcp-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/b94af6cef211cf3ee256f7e81f70fcd9/libXdmcp-1.1.1.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION libXfixes-5.0.1-1 | ||
|
||
# more info: https://foo.bar.com | ||
|
||
# SRCURL[0]="http://xorg.freedesktop.org/releases/individual/lib/libXfixes-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/b985b85f8b9386c85ddcfe1073906b4d/libXfixes-5.0.1.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION libXpm-3.5.11-1 | ||
|
||
# more info: https://foo.bar.com | ||
|
||
# SRCURL[0]="http://xorg.freedesktop.org/releases/individual/lib/libXpm-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/769ee12a43611cdebd38094eaf83f3f0/libXpm-3.5.11.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#!/bin/env beesh | ||
|
||
NVIDIA_ARCHIVE="NVIDIA-Linux-x86_64-${PKGVERSION}.run" | ||
|
||
SRCURL[0]="https://download.nvidia.com/XFree86/Linux-x86_64/${PKGVERSION}/${NVIDIA_ARCHIVE}" | ||
|
||
PATCHURL+=() | ||
|
||
LINUXPKG=${PKGEXTRANAME}.${ARCH} | ||
|
||
LINUXKLOCALVER=$(beeversion --format "%v.mx64.%r" "${LINUXPKG}") | ||
|
||
# '4.4.mx64.75' to '4.4.0.mx64.75' | ||
if [[ $LINUXKLOCALVER =~ ^([0-9]+\.[0-9]+)(\.mx64.*) ]]; then | ||
LINUXKLOCALVER="${BASH_REMATCH[1]}.0${BASH_REMATCH[2]}" | ||
fi | ||
|
||
|
||
build_in_sourcedir | ||
sourcesubdir_append kernel | ||
|
||
: ${BEE_TMP_TMPDIR:=/tmp} | ||
|
||
mee_extract() { | ||
LINUXBUILDARCHIVE="${BEE_BUILDARCHIVEDIR}/${LINUXPKG}.beebuild.tar.bz2" | ||
|
||
print_info "extracting nvidia archive .." | ||
|
||
start_cmd rmdir ${S} | ||
start_cmd sh ${F}/${NVIDIA_ARCHIVE} -x --target ${S} | ||
|
||
if [ -d "/usr/src/linux/${LINUXPKG}/source" ] ; then | ||
LINUXSRCDIR="/usr/src/linux/${LINUXPKG}/source" | ||
elif [ -d "${BEE_TMP_TMPDIR}/${LINUXPKG}/source" ] ; then | ||
LINUXSRCDIR="${BEE_TMP_TMPDIR}/${LINUXPKG}/source" | ||
else | ||
print_info "extracting linux build ${LINUXPKG} .." | ||
start_cmd gtar -xf "${LINUXBUILDARCHIVE}" -C ${BEE_TMP_TMPDIR} | ||
LINUXSRCDIR="${BEE_TMP_TMPDIR}/${LINUXPKG}/source" | ||
fi | ||
|
||
print_info "using kernel sources from ${LINUXSRCDIR} .." | ||
} | ||
|
||
mee_build_pre() { | ||
ln -s ${LINUXSRCDIR}/include ${S}/include | ||
} | ||
|
||
mee_build() { | ||
IGNORE_CC_MISMATCH=1 \ | ||
make SYSSRC=${LINUXSRCDIR} module | ||
} | ||
|
||
mee_install() { | ||
mkdir -pv ${D}${DATAROOTDIR}/nvidia/kernel/${LINUXKLOCALVER}/${PKGVERSION} | ||
|
||
cp -v *.ko ${D}${DATAROOTDIR}/nvidia/kernel/${LINUXKLOCALVER}/${PKGVERSION}/ | ||
|
||
ln -s ${PKGVERSION} ${D}${DATAROOTDIR}/nvidia/kernel/${LINUXKLOCALVER}/current | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION pcsc-lite-1.8.25-0 | ||
|
||
# more info: https://pcsclite.apdu.fr/ | ||
|
||
SRCURL[0]="https://pcsclite.apdu.fr/files/pcsc-lite-${PKGVERSION}.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION procps-ng-3.3.11-3 | ||
|
||
# SRCURL[0]="http://sourceforge.net/projects/procps-ng/files/Production/procps-ng-${PKGVERSION}.tar.xz" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/6cc5b94c1c5b8cbc89ad345a7b522f74/procps-ng-3.3.11.tar.xz" | ||
|
||
# PATCHURL+=() | ||
|
||
# build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
# | ||
# --with-systemd raus, weil er sonst libsystemd.so.0 haben will | ||
# | ||
mee_configure() { | ||
bee_configure --docdir=/usr/share/doc/procps-ng-3.3.11 \ | ||
--disable-static \ | ||
--disable-kill \ | ||
--disable-modern-top | ||
} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
#mee_install() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION rcs-5.7-1 | ||
|
||
# more info: https://foo.bar.com | ||
|
||
# SRCURL[0]="http://www.cs.purdue.edu/homes/trinkle/RCS/rcs-5.7.tar" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/f7b3f106bf87ff6344df38490f6a02c5/rcs-5.7.tar" | ||
|
||
# PATCHURL+=() | ||
|
||
build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
mee_patch_post() { | ||
autoconf | ||
sed -i -e '82d' src/conf.sh | ||
} | ||
|
||
#mee_configure() { | ||
# bee_configure | ||
#} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
mee_install() { | ||
bee_install prefix=${D}/usr exec_prefix=${D}/usr | ||
} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION safenetauthenticationclient-10.7.77-0 | ||
|
||
# more info on Token: https://safenet.gemalto.com/multi-factor-authentication/authenticators/pki-usb-authentication/etoken-5300-usb-token/ | ||
# | ||
# Download Driver from | ||
# https://extranet.mpg.de/IKT/Projekte/15022/Datenraum%20Rollouts/Forms/AllItems.aspx | ||
# - 001_Citrix_Client-Komponenten - 003_Linux - CryptoToken Treiber - safenetauthenticationclient_10.7.77_amd64 | ||
|
||
SRCURL[0]="/src/mariux/beeroot/downloads/safenetauthenticationclient_${PKGVERSION}_amd64.deb" | ||
|
||
# PATCHURL+=() | ||
|
||
# build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
mee_extract() { | ||
cd $S | ||
start_cmd ar xv "${@}" | ||
mkdir control | ||
start_cmd tar xvf control.tar.gz -C control | ||
start_cmd tar xvf data.tar.xz | ||
echo \$S=$S | ||
} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
#mee_configure() { | ||
# bee_configure | ||
#} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
mee_install() { | ||
start_cmd cp -r $S/etc $S/usr $D/ | ||
} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION shared-mime-info-1.15-0 | ||
|
||
# see also http://www.linuxfromscratch.org/blfs/view/svn/general/shared-mime-info.html | ||
# SRCURL[0]="https://gitlab.freedesktop.org/xdg/shared-mime-info/uploads/b27eb88e4155d8fccb8bb3cd12025d5b/shared-mime-info-1.15.tar.xz" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/5215f3d679a817de97eb8b0b911e9393/shared-mime-info-1.15.tar.xz" | ||
|
||
# PATCHURL+=() | ||
|
||
# build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
mee_configure() { | ||
bee_configure \ | ||
--disable-nls \ | ||
--disable-update-mimedb | ||
} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
#mee_install() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION telepathy-logger-0.2.8-1 | ||
# old bee telepathy-logger-0.2.8-0 | ||
|
||
#SRCURL[0]="http://telepathy.freedesktop.org/releases/telepathy-logger/telepathy-logger-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/755e6dcaa6a9ccf47f2fe73f3d4d888b/telepathy-logger-0.2.8.tar.bz2" | ||
|
||
# PATCHURL+=() | ||
|
||
# build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
mee_configure() { | ||
. $(python2-config --prefix)/profile | ||
bee_configure | ||
} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
#mee_install() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} | ||
mee_install_post() { | ||
rm -vrf ${D}/usr/share/gtk-doc | ||
} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION x11perf-1.5.4-1 | ||
|
||
# more info: https://foo.bar.com | ||
|
||
#SRCURL[0]="http://xorg.freedesktop.org/releases/individual/app/x11perf-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/5c3c7431a38775caaea6051312a49bc9/x11perf-1.5.4.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION xcb-util-image-0.3.9-1 | ||
|
||
# more info: https://foo.bar.com | ||
|
||
# SRCURL[0]="http://xcb.freedesktop.org/dist/xcb-util-image-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/fabb80b36490b00fc91289e2c7f66770/xcb-util-image-0.3.9.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION xkbcomp-1.2.4-1 | ||
|
||
#SRCURL[0]="http://xorg.freedesktop.org/releases/individual/app/xkbcomp-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/a0fc1ac3fc4fe479ade09674347c5aa0/xkbcomp-1.2.4.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION xkbutils-1.0.4-1 | ||
|
||
#SRCURL[0]="http://xorg.freedesktop.org/releases/individual/app/xkbutils-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/502b14843f610af977dffc6cbf2102d5/xkbutils-1.0.4.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION xlsatoms-1.1.1-1 | ||
|
||
# more info: https://foo.bar.com | ||
|
||
# SRCURL[0]="http://xorg.freedesktop.org/releases/individual/app/xlsatoms-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/9d0e16d116d1c89e6b668c1b2672eb57/xlsatoms-1.1.1.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION xrdb-1.1.0-1 | ||
|
||
# more info: https://foo.bar.com | ||
|
||
# SRCURL[0]="http://xorg.freedesktop.org/releases/individual/app/xrdb-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/b54c7e3e53b4f332d41ed435433fbda0/xrdb-1.1.0.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION xvinfo-1.1.2-1 | ||
|
||
#SRCURL[0]="http://xorg.freedesktop.org/releases/individual/app/xvinfo-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/1fbd65e81323a8c0a4b5e24db0058405/xvinfo-1.1.2.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION xwud-1.0.4-1 | ||
|
||
#SRCURL[0]="http://xorg.freedesktop.org/releases/individual/app/xwud-${PKGVERSION}.tar.bz2" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/3025b152b4f13fdffd0c46d0be587be6/xwud-1.0.4.tar.bz2" | ||
|
||
# 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() { | ||
# bee_install | ||
#} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |