Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
gthumb: update 3.10.0 to 3.10.4
- fix g+w permission files
- disable nls
- remove colord dependency
  • Loading branch information
wwwutz committed Sep 19, 2021
1 parent 066a35b commit 85c431e
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions gthumb.be0
@@ -1,8 +1,9 @@
#!/usr/bin/env beesh

# BEE_VERSION gthumb-3.10.0-0
# BEE_VERSION gthumb-3.10.4-0

SRCURL[0]="https://download.gnome.org/sources/gthumb/${PKGVERSION[2]}/gthumb-${PKGVERSION}.tar.xz"
# SRCURL[0]="https://download.gnome.org/sources/gthumb/${PKGVERSION[2]}/gthumb-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/ecf795dc33ceee8c0daac65caaa47334/gthumb-3.10.4.tar.gz"

# PATCHURL+=()

Expand All @@ -14,13 +15,20 @@ SRCURL[0]="https://download.gnome.org/sources/gthumb/${PKGVERSION[2]}/gthumb-${P
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}
mee_patch() {
bee_patch "${@}"
# fix permissions
find ${S} -perm /u+w -exec chmod g-w {} ';'
# disable nls
echo "" >po/LINGUAS
echo "" >help/LINGUAS
}

mee_configure() {
bee_configure \
-Dwarn-deprecated=false \
-Dcolord=false
}

#mee_build() {
# bee_build
Expand All @@ -29,7 +37,3 @@ SRCURL[0]="https://download.gnome.org/sources/gthumb/${PKGVERSION[2]}/gthumb-${P
#mee_install() {
# bee_install
#}

#mee_install_post() {
# exit
#}

0 comments on commit 85c431e

Please sign in to comment.