mirror of
https://github.com/ivabus/pantry
synced 2025-06-08 08:20:32 +03:00
python recommended deps (#68)
This commit is contained in:
parent
70d0af6b81
commit
8233f19e48
3 changed files with 48 additions and 1 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -88,7 +88,10 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: ./scripts/test.ts ${{ steps.build.outputs.pkgs }}
|
run: |
|
||||||
|
for x in ${{ steps.build.outputs.pkgs }}; do
|
||||||
|
./scripts/test.ts $x
|
||||||
|
done
|
||||||
|
|
||||||
- name: Bottle
|
- name: Bottle
|
||||||
run: ./scripts/bottle.ts ${{ steps.build.outputs.pkgs }}
|
run: ./scripts/bottle.ts ${{ steps.build.outputs.pkgs }}
|
||||||
|
|
27
projects/freedesktop.org/pkg-config/package.yml
Normal file
27
projects/freedesktop.org/pkg-config/package.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
distributable:
|
||||||
|
url: https://pkgconfig.freedesktop.org/releases/pkg-config-{{ version }}.tar.gz
|
||||||
|
strip-components: 1
|
||||||
|
|
||||||
|
provides:
|
||||||
|
- bin/pkg-config
|
||||||
|
|
||||||
|
versions:
|
||||||
|
github: freedesktop/pkg-config/tags
|
||||||
|
strip: /^pkg-config-/
|
||||||
|
|
||||||
|
build:
|
||||||
|
dependencies:
|
||||||
|
tea.xyz/gx/cc: c99
|
||||||
|
tea.xyz/gx/make: '*'
|
||||||
|
script: |-
|
||||||
|
./configure \
|
||||||
|
--prefix="{{ prefix }}" \
|
||||||
|
--disable-debug \
|
||||||
|
--disable-host-tool \
|
||||||
|
--with-internal-glib \
|
||||||
|
--with-pc-path=/usr/lib/pkgconfig #FIXME
|
||||||
|
make --jobs {{ hw.concurrency }}
|
||||||
|
make install
|
||||||
|
|
||||||
|
test:
|
||||||
|
script: pkg-config --version
|
17
projects/tukaani.org/xz/package.yml
Normal file
17
projects/tukaani.org/xz/package.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
distributable:
|
||||||
|
url: https://tukaani.org/xz/xz-{{ version }}.tar.gz
|
||||||
|
strip-components: 1
|
||||||
|
|
||||||
|
versions:
|
||||||
|
- 5.2.5
|
||||||
|
|
||||||
|
build:
|
||||||
|
dependencies:
|
||||||
|
tea.xyz/gx/cc: 'c99'
|
||||||
|
tea.xyz/gx/make: '*'
|
||||||
|
script: |
|
||||||
|
./configure --prefix={{ prefix }} --disable-debug
|
||||||
|
make --jobs {{ hw.concurrency }} install
|
||||||
|
|
||||||
|
test:
|
||||||
|
script: xz --version
|
Loading…
Reference in a new issue