RSS Git Download  Clone
Raw View History
Blames found: 1 Mode: text Binary: false


Hang on, we reloading big blames...
# Main Info NAME = gitlist DESCRIPTION = "An elegant and modern git repository viewer" LICENSE = New BSD #BUILD Info PREFIX = /usr/share PROJROOT = "$(shell pwd)" SRCROOT = "$(shell pwd)/gitlist" UPSTREAM_VERSION = $(shell cat ${SRCROOT}/release.info | head -n1 | cut -d"=" -f2) BUILD_STAMP = $(shell date +"%Y%m%d%H%M%S") #Packager Info PACKAGER = $(shell git config user.name) PACKAGER_MAIL = $(shell git config user.email) #Debian Package Info PACKAGE-VERSION= 1 DEBIAN_BUILD_ROOT = ${PROJROOT}/debian/ PROJECT_DEBIAN_LIKE_NAME=$(shell cat ${SRCROOT}/release.info | grep name | cut -d"=" -f2) DEBIAN_NAME=$(PROJECT_DEBIAN_LIKE_NAME)$(shell echo "_")$(UPSTREAM_VERSION)-${PACKAGE-VERSION}$(shell echo "_all.deb") DEBIAN_VERSION = # Generating control file define control Package: $(PROJECT_DEBIAN_LIKE_NAME) Version: $(UPSTREAM_VERSION)-${PACKAGE-VERSION} Architecture: all Section: web Priority: optional Maintainer: "${PACKAGER} <${PACKAGER_MAIL}>" Description: ${DESCRIPTION} endef export control all: @echo "... $(UPSTREAM_VERSION)" @echo "... $(PACKAGER)" @echo "... $(PACKAGER_MAIL)" @echo "... $(DEBIAN_NAME)" help: @echo "To use this make file just:" @echo "Download the gitlist tarball and stract it into a folder called gitlist" @echo "make [build_deb|build_rpm|build(apache|nginx|lighthttp)]" clean_deb: @echo "Cleaning . . ." @rm -rf ${DEBIAN_BUILD_ROOT}/*.deb @rm -rf ${PROJROOT}/debian prepare_deb: clean_deb @echo "############################### - Building DEB" @mkdir ${DEBIAN_BUILD_ROOT} -pv @mkdir ${DEBIAN_BUILD_ROOT}/DEBIAN -pv @mkdir ${DEBIAN_BUILD_ROOT}${PREFIX}/${PROJECT_DEBIAN_LIKE_NAME} -pv copy_deb_files: prepare_deb @echo "$$control" > ${DEBIAN_BUILD_ROOT}/DEBIAN/control copy_deb: copy_deb_files @echo Sync files @rsync -avz ${SRCROOT} ${DEBIAN_BUILD_ROOT}${PREFIX}/ md5sum_deb: copy_deb @cd debian; find . -type f ! -regex '.*\.hg.*' ! -regex '.*?debian-binary.*' ! -regex '.*?DEBIAN.*' | xargs -d "\n" md5sum > DEBIAN/md5sums deb_uniq: md5sum_deb @mkdir ${PROJROOT}/deb -p @dpkg -b debian $(DEBIAN_NAME); @mv $(DEBIAN_NAME) ${PROJROOT}/deb/ @rm debian -rf @echo 'sucess?' build_deb: deb_uniq #RPM_DIR = rpm #RPM_DIRS = SPECS RPMS SOURCES BUILD # #all: rpm # #init: clean # @echo Creating directories... # @echo $(DIST_DIR) # @mkdir -p $(DIST_DIR) # @for dir in $(RPM_DIRS); do \ # echo $(RPM_DIR)/$$dir; \ # mkdir -p $(RPM_DIR)/$$dir; \ # done # #preptar:init # @echo Copying files to generate tar... # @echo creating directory: $(TAR_DIR)/ # @mkdir $(TAR_DIR)/ -p # @rsync -avz --exclude ".git" --exclude ".gitignore" --exclude "builder" ../ $(TAR_DIR)/ # #tar: preptar # @echo Generating tarball... # @cd $(PROJROOT)/$(TAR_DIR); \ # tar cf $(PROJROOT)/$(RPM_DIR)/SOURCES/$(NAME).tar . # #rpm: tar # @echo Calling rpmbuild... # @echo Vesion: $(VERSION) # @cp $(NAME).spec $(RPM_DIR)/SPECS/ # # @cd $(PROJROOT)/$(RPM_DIR)/SPECS ; \ # rpmbuild -bb \ # --buildroot="$(PROJROOT)/$(RPM_DIR)/BUILD/$(NAME)" \ # --define "_topdir $(PROJROOT)/$(RPM_DIR)" \ # --define "name $(NAME)" \ # --define "prefixname $(PREFIX_NAME)" \ # --define "summary $(SUMMARY)" \ # --define "version $(VERSION)" \ # --define "release $(RELEASE)" \ # --define "url _$(URL)_" \ # --define "license $(LICENSE)" \ # --define "group $(GROUP)" \ # --define "vendor $(VENDOR)" \ # --define "packager $(PACKAGER)" \ # --define "prefix $(PREFIX)" \ # --define "source_dir $(PROJROOT)/$(RPM_DIR)/SOURCES" \ # $(NAME).spec # @echo Copying generated RPM to dist dir... # @cp $(PROJROOT)/$(RPM_DIR)/RPMS/noarch/*.rpm $(PROJROOT)/$(DIST_DIR)/ # @rm -rf $(TAR_DIR) # @rm -rf $(RPM_DIR) # #clean: # @echo Cleaning temporary dirs... # @rm -rf $(TAR_DIR) # @rm -rf $(RPM_DIR) # @rm -rf $(DIST_DIR) # ### Funções abaixo só serão utilizadas para gerar pacotes únicos de temas # #preptar_uniq: init # @echo "############################### - INIT RPM" # @echo Copying files to generate a unique theme tar... # @echo creating directory: $(TAR_DIR)/ # @mkdir $(TAR_DIR)/ -p # @rsync -avz --exclude ".git" --exclude ".gitignore" --exclude "builder" ../$(dirname) $(TAR_DIR)/ # #tar_uniq: preptar_uniq # @echo Generating tarball... # @cd $(PROJROOT)/$(TAR_DIR); \ # tar cf $(PROJROOT)/$(RPM_DIR)/SOURCES/$(fullname).tar $(dirname) # #rpm_uniq: tar_uniq # @echo Calling rpmbuild... # @echo Vesion: $(VERSION) # @cp $(NAME).spec $(RPM_DIR)/SPECS/ # # @cd $(PROJROOT)/$(RPM_DIR)/SPECS ; \ # rpmbuild -bb \ # --buildroot="$(PROJROOT)/$(RPM_DIR)/BUILD/$(dirname)" \ # --define "_topdir $(PROJROOT)/$(RPM_DIR)" \ # --define "name $(fullname)" \ # --define "prefixname $(PREFIX_NAME)" \ # --define "summary $(SUMMARY)" \ # --define "version $(VERSION)" \ # --define "release $(RELEASE)" \ # --define "url _$(URL)_" \ # --define "license $(LICENSE)" \ # --define "group $(GROUP)" \ # --define "vendor $(VENDOR)" \ # --define "packager $(PACKAGER)" \ # --define "prefix $(PREFIX)" \ # --define "source_dir $(PROJROOT)/$(RPM_DIR)/SOURCES" \ # $(NAME).spec # @echo Copying generated RPM to $(workspace)/rpm .... # @mkdir $(workspace)/rpm -p # @rm -rf $(workspace)/rpm/* # @cp $(PROJROOT)/$(RPM_DIR)/RPMS/noarch/*.rpm $(workspace)/rpm/ # @rm -rf $(TAR_DIR) # @rm -rf $(RPM_DIR) # #### DebianGen # # #deb_uniq: md5sum_deb # @mkdir $(workspace)/deb -p # @rm -rf $(workspace)/deb/* # @dpkg -b debian $(DEBIAN_NAME); # @cp $(DEBIAN_NAME) $(workspace)/deb/ # @rm debian -rf # @rm -rf $(PROJROOT)/*.deb # @echo 'sucess?' # #deb_package: deb_uniq # #rpm_package: rpm_uniq # #build_pkgs: deb_uniq rpm_uniq