mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
git-crypt: new package
[Peter: git is a runtime dependency, use pkg-config for openssl dependencies, use make install] Signed-off-by: Francesco Negri <francesconegri@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
4e43e7c53a
commit
8c43f5fd37
25
package/git-crypt/git-crypt.mk
Normal file
25
package/git-crypt/git-crypt.mk
Normal file
@@ -0,0 +1,25 @@
|
||||
################################################################################
|
||||
#
|
||||
# git-crypt
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GIT_CRYPT_VERSION = 0.5.0
|
||||
GIT_CRYPT_SITE = https://www.agwa.name/projects/git-crypt/downloads
|
||||
GIT_CRYPT_DEPENDENCIES = host-pkgconf openssl
|
||||
GIT_CRYPT_LICENSE = GPLv3+, MIT
|
||||
GIT_CRYPT_LICENSE_FILES = COPYING parse_options.hpp
|
||||
|
||||
GIT_CRYPT_LIBS = `$(PKG_CONFIG_HOST_BINARY) --libs openssl`
|
||||
|
||||
define GIT_CRYPT_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
|
||||
LDFLAGS="$(TARGET_LDFLAGS) $(GIT_CRYPT_LIBS)" PREFIX=/usr
|
||||
endef
|
||||
|
||||
define GIT_CRYPT_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) \
|
||||
PREFIX=/usr install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user