diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..7179a4b --- /dev/null +++ b/check-version.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Github repository +REPO="i3/i3" + +# 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"/tags | jq -r '.[].name' | grep -E '^[0-9]' | head -n1) + +echo "$TAG_NAME" diff --git a/pkg.info b/pkg.info index fa8c5dc..5989e9c 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,10 @@ name: i3 description: Improved tiling window manager -version: 4.23 +version: 4.24 url: https://i3wm.org/ license: BSD architecture: any depends: ["libev","libxkbcommon","pango","ttf-font","startup-notification","xcb-util-cursor","xcb-util-image","xcb-util-keysyms","xcb-util-wm","xcb-util-xrm","yajl"] optional_depends: ["dmenu","i3-lock","i3-status","rofi","xss-lock"] -make_depends: ["meson","xmlto"] +make_depends: ["asciidoc","meson","xmlto"] type: source diff --git a/source.sh b/source.sh index f7b5147..83b9215 100644 --- a/source.sh +++ b/source.sh @@ -15,18 +15,15 @@ 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 .. - ninja + meson setup --prefix=/usr -Ddocs=true -Dmans=true 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 ../LICENSE "$BPM_OUTPUT"/usr/share/licenses/i3/LICENSE + # Install package license + install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/i3/LICENSE }