Compare commits
8
Commits
cd0258dad2
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c2da84d8b
|
||
|
|
5e8e5455af
|
||
|
|
77275012f2
|
||
|
|
0baf61e703
|
||
|
|
5f2d577c57
|
||
|
|
a0896b3378
|
||
|
|
c59cd479af
|
||
|
|
221e796ca1
|
@@ -0,0 +1,3 @@
|
|||||||
|
# Ignore BPM archives and signatures
|
||||||
|
*.bpm
|
||||||
|
*.bpm.sig
|
||||||
+4
-1
@@ -6,7 +6,10 @@ REPO="xfce/thunar"
|
|||||||
# Replace slash with URL encoded representation
|
# Replace slash with URL encoded representation
|
||||||
REPO=$(echo "$REPO" | sed 's|/|%2F|g')
|
REPO=$(echo "$REPO" | sed 's|/|%2F|g')
|
||||||
|
|
||||||
|
# Get XFCE version
|
||||||
|
XFCE_VERSION=$(bpm q -d xfce4 | grep '^Version: ' | cut -d' ' -f2 | cut -d'-' -f1)
|
||||||
|
|
||||||
# Get tag name using Gitlab Rest API
|
# Get tag name using Gitlab Rest API
|
||||||
TAG_NAME=$(curl -s -L https://gitlab.xfce.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[].name' | cut -d'-' -f2 | grep -v 'pre' | sort -V | tail -n1)
|
TAG_NAME=$(curl -s -L https://gitlab.xfce.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[].name' | cut -d'-' -f2 | grep "^${XFCE_VERSION}" | head -n1)
|
||||||
|
|
||||||
echo "$TAG_NAME"
|
echo "$TAG_NAME"
|
||||||
|
|||||||
+11
-8
@@ -1,33 +1,36 @@
|
|||||||
name: thunar
|
name: thunar
|
||||||
description: A modern file manager for the Xfce Desktop Environment
|
description: A modern file manager for the Xfce Desktop Environment
|
||||||
version: 4.20.4
|
version: 4.20.9
|
||||||
revision: 3
|
revision: 1
|
||||||
url: https://docs.xfce.org/xfce/thunar/start
|
url: https://docs.xfce.org/xfce/thunar/start
|
||||||
license: GPL2-or-later,LGPL2.1-only
|
license: GPL2-or-later,LGPL2.1-only
|
||||||
|
maintainers:
|
||||||
|
- [email protected]
|
||||||
architecture: any
|
architecture: any
|
||||||
type: source
|
type: source
|
||||||
depends:
|
depends:
|
||||||
- desktop-file-utils
|
- desktop-file-utils
|
||||||
- exo
|
- exo
|
||||||
- hicolor-icon-theme
|
- hicolor-icon-theme
|
||||||
|
- libexif
|
||||||
- libgudev
|
- libgudev
|
||||||
- libnotify
|
- libnotify
|
||||||
- libpng
|
|
||||||
- libxfce4ui
|
- libxfce4ui
|
||||||
- libxfce4util
|
- libxfce4util
|
||||||
- pcre2
|
- pcre2
|
||||||
optional_depends:
|
optional_depends:
|
||||||
- gvfs
|
- gvfs:For trash support, mounting with udisk and remote filesystems
|
||||||
- thunar-volman
|
- thunar-archive-plugin:For archive creation and extraction
|
||||||
- tumbler
|
- thunar-volman:For removable device management
|
||||||
|
- tumbler:For thumbnail previews
|
||||||
make_depends:
|
make_depends:
|
||||||
- glib
|
- glib
|
||||||
- gobject-introspection
|
- gobject-introspection
|
||||||
- gtk-doc
|
- gtk-doc
|
||||||
- xfce4-panel
|
|
||||||
- xfce4-dev-tools
|
- xfce4-dev-tools
|
||||||
|
- xfce4-panel
|
||||||
downloads:
|
downloads:
|
||||||
- url: https://gitlab.xfce.org/xfce/thunar/-/archive/thunar-${BPM_PKG_VERSION}/thunar-thunar-${BPM_PKG_VERSION}.tar.gz
|
- url: https://gitlab.xfce.org/xfce/thunar/-/archive/thunar-${BPM_PKG_VERSION}/thunar-thunar-${BPM_PKG_VERSION}.tar.gz
|
||||||
extract_to: ${BPM_SOURCE}
|
extract_to: ${BPM_SOURCE}
|
||||||
extract_strip_components: 1
|
extract_strip_components: 1
|
||||||
checksum: 951a4da7b0861a8363699c31850334e8abd355ea52559c10fc1df512ea543df0
|
checksum: c3582dd823663d2c5d569ed7dc8d4206aae6a4d23789736695bdc575037a6ead
|
||||||
+10
-2
@@ -1,4 +1,4 @@
|
|||||||
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
|
# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
|
||||||
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
||||||
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
||||||
|
|
||||||
@@ -12,7 +12,15 @@ prepare() {
|
|||||||
# The build function is executed in the source directory
|
# The build function is executed in the source directory
|
||||||
# This function is used to compile the source code
|
# This function is used to compile the source code
|
||||||
build() {
|
build() {
|
||||||
./configure --prefix=/usr --sysconfdir=/etc --disable-debug --enable-maintainer-mode
|
./configure --prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--enable-gio-unix \
|
||||||
|
--enable-gudev \
|
||||||
|
--enable-notifications \
|
||||||
|
--enable-exif \
|
||||||
|
--enable-gtk-doc \
|
||||||
|
--disable-debug \
|
||||||
|
--enable-maintainer-mode
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user