mirror of
https://github.com/ivabus/pantry
synced 2024-11-14 20:45:09 +03:00
29 lines
658 B
YAML
29 lines
658 B
YAML
|
distributable:
|
|||
|
url: http://user-dirs.freedesktop.org/releases/xdg-user-dirs-{{version.tag}}.tar.gz
|
|||
|
strip-components: 1
|
|||
|
|
|||
|
provides:
|
|||
|
- bin/xdg-user-dir
|
|||
|
- bin/xdg-user-dirs-update
|
|||
|
|
|||
|
versions:
|
|||
|
gitlab: gitlab.freedesktop.org:xdg/xdg-user-dirs/tags
|
|||
|
|
|||
|
dependencies:
|
|||
|
gnu.org/gettext: ^0.21
|
|||
|
gnu.org/libiconv: ^1.1
|
|||
|
|
|||
|
build:
|
|||
|
script:
|
|||
|
- ./configure
|
|||
|
--prefix="{{ prefix }}"
|
|||
|
--disable-documentation
|
|||
|
# ^^ doesn’t build and docs don’t say what deps this needs to build
|
|||
|
- make --jobs {{ hw.concurrency }} install
|
|||
|
env:
|
|||
|
# without this fails to add the transitive dependency
|
|||
|
LDFLAGS: -liconv
|
|||
|
|
|||
|
test:
|
|||
|
xdg-user-dir --help
|