🔒 Repository is read-only – file editing is disabled.

recipes/gui/shared-color-targets/PAGBUILD.yaml main

29 linii Raw ← Powrót
1234567891011121314151617181920212223242526272829
pkgname: 'shared-color-targets'
pkgver: '0.1.7'
pkgrel: '3'
pkgdesc: 'Shared color targets for creating color profiles.'
url: 'https://www.gnome.org'
arch: x86_64
depends: []
makedepends: []
source:
- 'https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}
  ./configure --prefix=/usr
  make

package: |
  cd ${pkgname}-${pkgver}
  make DESTDIR="${PKGDIR}" install

update: |
  local url ext
  ext=".tar.xz"
  url="https://people.freedesktop.org/~hughsient/releases"
  lynx -dump -listonly --nonumbers $url/?C=M\;O=A|\
  grep $ext$|grep $url/${pkgname}-|tail -1|sed s@$url/${pkgname}-@@|sed s@$ext@@