First official release of luakit! https://github.com/luakit/luakit/issues/324
OK gsoares
This commit is contained in:
parent
24c37b1f01
commit
d6f5bfce46
@ -1,19 +1,16 @@
|
||||
# $OpenBSD: Makefile,v 1.17 2017/06/28 13:06:48 abieber Exp $
|
||||
# $OpenBSD: Makefile,v 1.18 2017/07/26 14:19:45 abieber Exp $
|
||||
|
||||
BROKEN-powerpc = help2man: can't get `--help' info from ./luakit
|
||||
|
||||
COMMENT = fast, small, webkit based browser written in lua
|
||||
|
||||
# Date of the most recent upstream commit.
|
||||
VERSION = 2017.06.24
|
||||
GH_ACCOUNT = luakit
|
||||
GH_COMMIT = 2de65f50d7f6dd0af5b94b638f59e05cf64946c9
|
||||
GH_TAGNAME = 2017.07.26
|
||||
GH_PROJECT = luakit
|
||||
|
||||
EPOCH = 0
|
||||
|
||||
DISTNAME = luakit-${VERSION}
|
||||
|
||||
CATEGORIES = www
|
||||
|
||||
MAINTAINER = Aaron Bieber <abieber@openbsd.org>
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (luakit-2017.06.24-2de65f50.tar.gz) = n1t0RJTYWeYjac0qWFoyd7N8G7RXku6uQAoXtDKgRHA=
|
||||
SIZE (luakit-2017.06.24-2de65f50.tar.gz) = 348582
|
||||
SHA256 (luakit-2017.07.26.tar.gz) = vuXBeU+H914xzNCyyDEQ/4OwEcjKzdq73NJxFemc3qs=
|
||||
SIZE (luakit-2017.07.26.tar.gz) = 377508
|
||||
|
@ -1,17 +1,17 @@
|
||||
$OpenBSD: patch-Makefile,v 1.2 2017/06/28 13:06:48 abieber Exp $
|
||||
$OpenBSD: patch-Makefile,v 1.3 2017/07/26 14:19:45 abieber Exp $
|
||||
Index: Makefile
|
||||
--- Makefile.orig
|
||||
+++ Makefile
|
||||
@@ -13,7 +13,7 @@ OBJS = $(foreach obj,$(SRCS:.c=.o),$(obj))
|
||||
EXT_SRCS = $(filter-out $(TSRC),$(wildcard extension/*.c) $(wildcard extension/clib/*.c) $(wildcard common/*.c)) $(wildcard common/clib/*.c) $(TSRC)
|
||||
EXT_OBJS = $(foreach obj,$(EXT_SRCS:.c=.o),$(obj))
|
||||
@@ -17,7 +17,7 @@ EXT_OBJS = $(foreach obj,$(EXT_SRCS:.c=.o),$(obj))
|
||||
# Must be kept in sync with doc/docgen.ld
|
||||
DOC_SRCS = $(filter-out lib/markdown.lua,$(shell for d in doc/luadoc lib common/clib; do find $$d -type f; done)) tests/lib.lua
|
||||
|
||||
-all: options newline luakit luakit.1.gz luakit.so apidoc
|
||||
+all: options newline luakit luakit.1 luakit.so
|
||||
|
||||
default: all
|
||||
@echo "[DEPRECATED] Use of the 'default' target is deprecated. Please use 'all' target as a replacement."
|
||||
@@ -49,21 +49,21 @@ buildopts.h: buildopts.h.in
|
||||
options:
|
||||
@echo luakit build options:
|
||||
@@ -50,21 +50,21 @@ buildopts.h: buildopts.h.in
|
||||
$(filter-out $(EXT_OBJS),$(OBJS)) $(EXT_OBJS): $(HEADS) config.mk
|
||||
|
||||
$(filter-out $(EXT_OBJS),$(OBJS)) : %.o : %.c
|
||||
@ -37,17 +37,17 @@ Index: Makefile
|
||||
@$(CC) -o $@ $(EXT_OBJS) -shared $(LDFLAGS)
|
||||
|
||||
luakit.1: luakit.1.in
|
||||
@@ -83,16 +83,12 @@ doc: buildopts.h $(THEAD) $(TSRC)
|
||||
@@ -86,16 +86,12 @@ doc: buildopts.h $(THEAD) $(TSRC)
|
||||
doxygen -s doc/luakit.doxygen
|
||||
|
||||
clean:
|
||||
- rm -rf doc/apidocs doc/html luakit $(OBJS) $(EXT_OBJS) $(TSRC) $(THEAD) buildopts.h luakit.1 luakit.1.gz luakit.so
|
||||
+ rm -rf doc/apidocs doc/html luakit $(OBJS) $(EXT_OBJS) $(TSRC) $(THEAD) buildopts.h luakit.1 luakit.so
|
||||
+ rm -rf doc/html luakit $(OBJS) $(EXT_OBJS) $(TSRC) $(THEAD) buildopts.h luakit.1 luakit.1.gz luakit.so
|
||||
|
||||
install: all
|
||||
install -d $(INSTALLDIR)/share/luakit/
|
||||
install -d $(DOCDIR) $(DOCDIR)/classes $(DOCDIR)/modules $(DOCDIR)/pages
|
||||
install -m644 README.md AUTHORS COPYING* $(DOCDIR)
|
||||
install -m644 README.md AUTHORS COPYING.GPLv3 $(DOCDIR)
|
||||
- install -m644 doc/apidocs/classes/* $(DOCDIR)/classes
|
||||
- install -m644 doc/apidocs/modules/* $(DOCDIR)/modules
|
||||
- install -m644 doc/apidocs/pages/* $(DOCDIR)/pages
|
||||
@ -55,7 +55,7 @@ Index: Makefile
|
||||
install -d $(INSTALLDIR)/share/luakit/lib $(INSTALLDIR)/share/luakit/lib/lousy $(INSTALLDIR)/share/luakit/lib/lousy/widget
|
||||
install -m644 lib/*.* $(INSTALLDIR)/share/luakit/lib
|
||||
install -m644 lib/lousy/*.* $(INSTALLDIR)/share/luakit/lib/lousy
|
||||
@@ -107,7 +103,7 @@ install: all
|
||||
@@ -110,7 +106,7 @@ install: all
|
||||
install -d $(APPDIR)
|
||||
install -m644 extras/luakit.desktop $(APPDIR)
|
||||
install -d $(MANPREFIX)/man1/
|
||||
@ -64,7 +64,7 @@ Index: Makefile
|
||||
mkdir -p resources
|
||||
find resources -type d -exec install -d $(INSTALLDIR)/share/luakit/'{}' \;
|
||||
find resources -type f -exec sh -c 'f="{}"; install -m644 "$$f" "$(INSTALLDIR)/share/luakit/$$(dirname $$f)"' \;
|
||||
@@ -124,4 +120,4 @@ run-tests: luakit luakit.so tests/util.so
|
||||
@@ -127,4 +123,4 @@ run-tests: luakit luakit.so tests/util.so
|
||||
@$(LUA_BIN_NAME) tests/run_test.lua
|
||||
|
||||
newline: options;@echo
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2017/06/28 13:06:48 abieber Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.4 2017/07/26 14:19:45 abieber Exp $
|
||||
@bin bin/luakit
|
||||
@man man/man1/luakit.1
|
||||
share/applications/luakit.desktop
|
||||
@ -24,7 +24,6 @@ share/examples/luakit/window.lua
|
||||
share/luakit/
|
||||
share/luakit/doc/
|
||||
share/luakit/doc/AUTHORS
|
||||
share/luakit/doc/COPYING
|
||||
share/luakit/doc/COPYING.GPLv3
|
||||
share/luakit/doc/README.md
|
||||
share/luakit/doc/classes/
|
||||
@ -61,7 +60,6 @@ share/luakit/lib/history.lua
|
||||
share/luakit/lib/history_chrome.lua
|
||||
share/luakit/lib/image_css.lua
|
||||
share/luakit/lib/image_css_wm.lua
|
||||
share/luakit/lib/introspector.lua
|
||||
share/luakit/lib/introspector_chrome.lua
|
||||
share/luakit/lib/jquery.min.js
|
||||
share/luakit/lib/lousy/
|
||||
@ -88,7 +86,6 @@ share/luakit/lib/lousy/widget/tabi.lua
|
||||
share/luakit/lib/lousy/widget/tablist.lua
|
||||
share/luakit/lib/lousy/widget/uri.lua
|
||||
share/luakit/lib/markdown.lua
|
||||
share/luakit/lib/mixed_content.lua
|
||||
share/luakit/lib/newtab_chrome.lua
|
||||
share/luakit/lib/noscript.lua
|
||||
share/luakit/lib/open_editor.lua
|
||||
@ -115,10 +112,16 @@ share/luakit/resources/icons/
|
||||
share/luakit/resources/icons/COPYING
|
||||
share/luakit/resources/icons/tab-icon-chrome.png
|
||||
share/luakit/resources/icons/tab-icon-chrome@2x.png
|
||||
share/luakit/resources/icons/tab-icon-crash.png
|
||||
share/luakit/resources/icons/tab-icon-crash@2x.png
|
||||
share/luakit/resources/icons/tab-icon-error.png
|
||||
share/luakit/resources/icons/tab-icon-error@2x.png
|
||||
share/luakit/resources/icons/tab-icon-page.png
|
||||
share/luakit/resources/icons/tab-icon-page@2x.png
|
||||
share/luakit/resources/icons/tab-icon-private.png
|
||||
share/luakit/resources/icons/tab-icon-private@2x.png
|
||||
share/luakit/resources/icons/tab-icon-security-error.png
|
||||
share/luakit/resources/icons/tab-icon-security-error@2x.png
|
||||
share/pixmaps/
|
||||
share/pixmaps/luakit.png
|
||||
@exec %D/bin/update-desktop-database
|
||||
|
Loading…
x
Reference in New Issue
Block a user