diff --git a/gsettings-desktop-schemas-3.4.1-0.bee b/gsettings-desktop-schemas-3.4.1-0.bee deleted file mode 100755 index 37bf9707a..000000000 --- a/gsettings-desktop-schemas-3.4.1-0.bee +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env beesh - -SRCURL[0]="ftp://ftp.gnome.org/pub/gnome/sources/gsettings-desktop-schemas/${PKGVERSION[2]}/gsettings-desktop-schemas-${PKGVERSION}.tar.xz" - -PATCHURL[0]="" - -# BEE_CONFIGURE=compat - -# BEE_BUILDTYPE= - -# EXCLUDE="" - -# build_in_sourcedir - - - - - -#mee_extract() { -# bee_extract "${@}" -#} - -#mee_patch() { -# bee_patch "${@}" -#} - -#mee_configure() { -# bee_configure -#} - -#mee_build() { -# bee_build -#} - -#mee_install() { -# bee_install -#} diff --git a/gsettings-desktop-schemas.be0 b/gsettings-desktop-schemas.be0 new file mode 100755 index 000000000..f64c874d7 --- /dev/null +++ b/gsettings-desktop-schemas.be0 @@ -0,0 +1,35 @@ +#!/usr/bin/env beesh + +# BEE_VERSION gsettings-desktop-schemas-3.4.1-0 + +SRCURL[0]="https://download.gnome.org/sources/gsettings-desktop-schemas/${PKGVERSION[2]}/gsettings-desktop-schemas-${PKGVERSION}.tar.xz" + +# 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 +#} diff --git a/libmtp-1.1.8-0.bee b/gvfs.be0 similarity index 75% rename from libmtp-1.1.8-0.bee rename to gvfs.be0 index 25b8bc146..5f60a2a7e 100755 --- a/libmtp-1.1.8-0.bee +++ b/gvfs.be0 @@ -1,5 +1,7 @@ #!/usr/bin/env beesh +# BEE_VERSION gvfs-1.42.0-0 + ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -7,7 +9,7 @@ ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -SRCURL[0]="http://downloads.sourceforge.net/project/libmtp/libmtp/${PKGVERSION}/libmtp-${PKGVERSION}.tar.gz" +SRCURL[0]="https://download.gnome.org/sources/gvfs/${PKGVERSION[2]}/gvfs-${PKGVERSION}.tar.xz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. @@ -28,6 +30,15 @@ SRCURL[0]="http://downloads.sourceforge.net/project/libmtp/libmtp/${PKGVERSION}/ # build_in_sourcedir +############################################################################### +## bee cannot detect buildtypes specified in subdirectories. +## Sometimes packages "hide" the real sources in a subdirectory named +## 'src' or 'cmake' or .. +## use 'sourcesubdir_append' to specify this directory if known. + +# sourcesubdir_append src + + ############################################################################### ## Change the default (auto-detected) steps to ## extract, patch, configure/setup, build and install the software. @@ -42,9 +53,17 @@ SRCURL[0]="http://downloads.sourceforge.net/project/libmtp/libmtp/${PKGVERSION}/ # bee_patch "${@}" #} -#mee_configure() { -# bee_configure -#} +mee_configure() { + bee_configure \ + -Dafc=false \ + -Dcdda=false \ + -Dfuse=false \ + -Dgoa=false \ + -Dgoogle=false \ + -Dnfs=false \ + -Dsmb=false \ + -Ddnssd=false +} #mee_build() { # bee_build diff --git a/libmtp.be0 b/libmtp.be0 new file mode 100755 index 000000000..a1852c962 --- /dev/null +++ b/libmtp.be0 @@ -0,0 +1,80 @@ +#!/usr/bin/env beesh + +# BEE_VERSION libmtp-1.1.16-0 + +## this file was created by bee init and should be executed to build a +## bee-package. (Additional hints are located at the end of this file.) + +############################################################################### +## The source URL(s) define the location of the sources that will be +## downloaded. Version variables may be used to simplify reuse of this bee-file. + +SRCURL[0]="https://downloads.sourceforge.net/project/libmtp/libmtp/${PKGVERSION}/libmtp-${PKGVERSION}.tar.gz" + +############################################################################### +## Add URLs/pathes to patch files to the PATCHURL array. +## The sources will be patched in the order of the array. + +# PATCHURL+=() + +############################################################################### +## Uncomment the next statement, if the software may not be able to be built +## outside the source directory and needs to be built inside the source +## directory. + +# build_in_sourcedir + +############################################################################### +## bee cannot detect buildtypes specified in subdirectories. +## Sometimes packages "hide" the real sources in a subdirectory named +## 'src' or 'cmake' or .. +## use 'sourcesubdir_append' to specify this directory if known. + +# sourcesubdir_append src + + +############################################################################### +## Change the default (auto-detected) steps to +## extract, patch, configure/setup, build and install the software. +## Make sure the mee_install function does install everything to the +## image directory "${D}" + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure \ + --disable-static +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} +## by default this may be 'make install DESTDIR="${D}"' + +############################################################################### +## +## Additional hints: +## +## The name of this bee-file should follow the following naming convention: +## pkgname-pkgversion-pkgrevision.bee +## +## You may remove all comments as long as SRCURL[0] is set. +## +## Everything in this file will be executed in a bash environment. +## +## Build the package by executing +## './pkg-version-N.bee' or +## 'beesh ./pkg-version-N.bee' +## +## see http://beezinga.org/ +##