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

recipes/core/gettext/PAGBUILD.yaml main

31 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031
pkgname: gettext
pkgver: '1.0'
pkgrel: '2'
pkgdesc: Utilities for internationalization and localization.
url: 'https://www.gnu.org/software/gettext/'
arch: x86_64
license:
- GPL3
depends: []
makedepends:
- acl
- attr
- ncurses
source:
- 'https://ftp.gnu.org/gnu/gettext/gettext-${pkgver}.tar.xz'
sha256sums:
- 71132a3fb71e68245b8f2ac4e9e97137d3e5c02f415636eb508ae607bc01add7
build: |
  cd gettext-${pkgver}

  ./configure --prefix=/usr \
              --disable-static \
              --docdir=/usr/share/doc/gettext
  make
  # make check pomijamy: testy gettext trwaja ~25 min i nie sa potrzebne do pakietu
  make DESTDIR=${PKGDIR} install
  chmod 0755 ${PKGDIR}/usr/lib/preloadable_libintl.so

  install -Dm644 COPYING ${PKGDIR}/usr/share/licenses/${pkgname}/COPYING
package: |
  true