diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..ff50b82 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Github repository +REPO="flatpak/xdg-desktop-portal" + +# Get tag name using Github Rest API +TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/releases/latest | jq -r '.tag_name') + +echo "$TAG_NAME" diff --git a/pkg.info b/pkg.info index 5a7312f..11d4798 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,6 @@ name: xdg-desktop-portal description: A portal frontend service for Flatpak and other desktop containment frameworks -version: 1.20.0 -revision: 2 +version: 1.20.3 url: https://flatpak.github.io/xdg-desktop-portal/ license: LGPL2.1-or-later architecture: any diff --git a/source.sh b/source.sh index ca695b0..2a2eb08 100644 --- a/source.sh +++ b/source.sh @@ -15,18 +15,14 @@ prepare() { # The build function is executed in the source directory # This function is used to compile the source code build() { - mkdir build - cd build - - meson setup --prefix=/usr --buildtype=release -Dtests=disabled .. - ninja + meson setup --prefix=/usr --buildtype=release -Dtests=disabled build + meson compile -C build } # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() { - cd build - DESTDIR="$BPM_OUTPUT" ninja install + meson install -C build --destdir="$BPM_OUTPUT" install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/xdg-desktop-portal/COPYING }