mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
@@ -0,0 +1,70 @@
|
||||
#
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=fossil
|
||||
PKG_VERSION:=1.33
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_LICENSE:=BSD-2-Clause
|
||||
PKG_MAINTAINER:=Luka Perkov <luka@openwrt.org>
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-src-${PKG_VERSION}.tar.gz
|
||||
PKG_SOURCE_URL:=http://www.fossil-scm.org/download/
|
||||
PKG_MD5SUM:=53f8145084a2065d6cb734980c172c7e
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-src-$(PKG_VERSION)
|
||||
|
||||
PKG_INSTALL:=1
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/fossil
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
SUBMENU:=Version Control Systems
|
||||
TITLE:=Simple distributed software configuration management
|
||||
URL:=http://www.fossil-scm.org
|
||||
DEPENDS:=+zlib
|
||||
endef
|
||||
|
||||
define Package/fossil/description
|
||||
Fossil is a distributed version control system, bug tracking system
|
||||
and wiki software server for use in software development.
|
||||
endef
|
||||
|
||||
MAKE_FLAGS := \
|
||||
TCC="$(TARGET_CC)" \
|
||||
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -DFOSSIL_ENABLE_JSON" \
|
||||
LDFLAGS="$(TARGET_LDFLAGS) -Wl,-rpath=$(TOOLCHAIN_DIR)/lib -L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
|
||||
|
||||
undefine Build/Configure
|
||||
|
||||
define Build/Compile
|
||||
$(call Build/Compile/Default, \
|
||||
-f Makefile.classic $(MAKE_FLAGS) all \
|
||||
)
|
||||
endef
|
||||
|
||||
undefine Build/Install
|
||||
|
||||
define Package/fossil/conffiles
|
||||
/etc/config/fossil
|
||||
endef
|
||||
|
||||
define Package/fossil/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/fossil.init $(1)/etc/init.d/fossil
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_CONF) ./files/fossil.config $(1)/etc/config/fossil
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,fossil))
|
||||
Reference in New Issue
Block a user