diff --git a/pkg.info b/pkg.info index 526d35b..acd6038 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,38 @@ name: poppler description: PDF rendering library based on the xpdf-3.0 code base -version: 25.09.1 +version: 25.10.0 +revision: 1 url: https://poppler.freedesktop.org/ license: GPL2-only,GPL3-or-later,HPND-sell-variant,LGPL2-or-later,LGPL2.1-or-later,MIT architecture: any -depends: ["cairo","curl","fontconfig","freetype2","gcc-libs","glib","glibc","gpgmepp","icu","lcms2","libjpeg-turbo","libpng","libtiff","nspr","nss","openjpeg","zlib"] -make_depends: ["boost","cmake","gobject-introspection","poppler-data","python3","qt6-base"] type: source +depends: + - cairo + - curl + - fontconfig + - freetype2 + - gcc-libs + - glib + - glibc + - gpgmepp + - icu + - lcms2 + - libjpeg-turbo + - libpng + - libtiff + - nspr + - nss + - openjpeg + - zlib +make_depends: + - boost + - cmake + - gobject-introspection + - poppler-data + - python3 + - qt6-base +downloads: + - url: https://poppler.freedesktop.org/poppler-${BPM_PKG_VERSION}.tar.xz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 6b5e9bb64dabb15787a14db1675291c7afaf9387438cc93a4fb7f6aec4ee6fe0 diff --git a/source.sh b/source.sh index 1b64a91..74fd479 100644 --- a/source.sh +++ b/source.sh @@ -2,16 +2,6 @@ # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT -DOWNLOAD="https://poppler.freedesktop.org/poppler-${BPM_PKG_VERSION}.tar.xz" -FILENAME="${DOWNLOAD##*/}" - -# The prepare function is executed in the root of the temp directory -# This function is used for downloading files and putting them into the correct location -prepare() { - wget "$DOWNLOAD" - tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" -} - # The build function is executed in the source directory # This function is used to compile the source code build() {