diff options
Diffstat (limited to 'vcpkg/ports/xbitmaps')
| -rw-r--r-- | vcpkg/ports/xbitmaps/portfile.cmake | 24 | ||||
| -rw-r--r-- | vcpkg/ports/xbitmaps/vcpkg.json | 10 |
2 files changed, 34 insertions, 0 deletions
diff --git a/vcpkg/ports/xbitmaps/portfile.cmake b/vcpkg/ports/xbitmaps/portfile.cmake new file mode 100644 index 0000000..a2617b1 --- /dev/null +++ b/vcpkg/ports/xbitmaps/portfile.cmake @@ -0,0 +1,24 @@ +vcpkg_from_gitlab(
+ GITLAB_URL https://gitlab.freedesktop.org/xorg
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO data/bitmaps
+ REF 61eebdfde170841ae933cf65ba27346fbf2f8018
+ SHA512 dd8acefc6f96d65e4b5d4807221aa3b87faca7b8b50e9de76081351503c9abb127a3063f3bb23ca71a0e3521640e7fdf7686e33cca5c7b7ad8d67a7ac26e65b5
+ HEAD_REF master
+)
+
+set(ENV{ACLOCAL} "aclocal -I \"${CURRENT_INSTALLED_DIR}/share/xorg/aclocal/\"")
+
+vcpkg_configure_make(
+ SOURCE_PATH "${SOURCE_PATH}"
+ AUTOCONFIG
+)
+vcpkg_install_make()
+file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/share/pkgconfig/")
+file(RENAME "${CURRENT_PACKAGES_DIR}/share/${PORT}/pkgconfig/xbitmaps.pc" "${CURRENT_PACKAGES_DIR}/share/pkgconfig/xbitmaps.pc")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/${PORT}/pkgconfig/")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
+vcpkg_fixup_pkgconfig()
+
+file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
+file(TOUCH "${CURRENT_PACKAGES_DIR}/share/${PORT}/usage")
diff --git a/vcpkg/ports/xbitmaps/vcpkg.json b/vcpkg/ports/xbitmaps/vcpkg.json new file mode 100644 index 0000000..d93fddd --- /dev/null +++ b/vcpkg/ports/xbitmaps/vcpkg.json @@ -0,0 +1,10 @@ +{ + "name": "xbitmaps", + "version": "1.1.2", + "description": "X BitMap (XBM) format bitmaps commonly used in X.Org applications", + "homepage": "https://gitlab.freedesktop.org/xorg/data/bitmaps", + "license": null, + "dependencies": [ + "xorg-macros" + ] +} |