this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove golang requirement for now

+7 -6
+4 -4
Makefile
··· 25 25 26 26 27 27 build: 28 - go build -o scripts/twit-link scripts/twit-link.go 28 + #go build -o scripts/twit-link scripts/twit-link.go 29 29 30 30 31 31 install: ··· 33 33 install -p -m644 htdocs/config.yaml $(CONFDIR)/$(PKGNAME) 34 34 cp -pr htdocs $(DATADIR) 35 35 mkdir -p $(DESTDIR)/usr/local/bin 36 - go build -o scripts/twit-link scripts/twit-link.go 37 - cp -pr scripts/twit-link $(DESTDIR)/usr/local/bin 36 + #go build -o scripts/twit-link scripts/twit-link.go 37 + #cp -pr scripts/twit-link $(DESTDIR)/usr/local/bin 38 38 39 39 tarball: clean 40 40 mkdir -p $(TAR_TMP_DIR)/$(PKGNAME)-$(VERSION) ··· 77 77 sed -i 's/==VERSION==/$(VERSION)/g' $(TMPDIR)/SPECS/$(SPEC_FILE) 78 78 @wait 79 79 $(RPMBUILD) $(RPM_DEFINES) -ba $(TMPDIR)/SPECS/$(SPEC_FILE) 80 - @mv -f $(TMPDIR)/RPMS/x86_64/* . 80 + @mv -f $(TMPDIR)/RPMS/noarch/* . 81 81 @rm -rf $(TMPDIR) 82 82 83 83 tempdir:
+3 -2
tumble.spec
··· 17 17 # Only when running on localhost, but that's what's hard-coded for now. 18 18 Requires: mysql-server 19 19 BuildRequires: httpd 20 - BuildRequires: golang 20 + #BuildRequires: golang 21 + BuildArch: noarch 21 22 22 23 %description 23 24 A classic tumblelog written in Perl in something like 2004. ··· 67 68 /srv/www/%{name}/htdocs/search.cgi 68 69 /srv/www/%{name}/htdocs/thtml 69 70 /srv/www/%{name}/htdocs/config.yaml 70 - /usr/local/bin/* 71 + #/usr/local/bin/* 71 72 #%config(noreplace)%{_sysconfdir}/cron.hourly/* 72 73 73 74