mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-16 06:28:38 +03:00
Merge branch 'newbreach' of github.com:urbit/urbit into newbreach
This commit is contained in:
commit
90e42a7fc8
11
Makefile
11
Makefile
@ -324,6 +324,15 @@ osxpackage:
|
||||
cp -R urb/zod inst/usr/local/lib/urb
|
||||
pkgbuild --root inst --identifier org.urbit.vere --version 0.2 vere.pkg
|
||||
|
||||
debbuild:
|
||||
$(MAKE) $(BIN)/vere LIB=/usr/lib/urb
|
||||
|
||||
debinstall:
|
||||
mkdir -p $(DESTDIR)/usr/bin $(DESTDIR)/usr/lib/urb
|
||||
install -m755 $(BIN)/vere $(DESTDIR)/usr/bin
|
||||
cp urb/urbit.pill $(DESTDIR)/usr/lib/urb
|
||||
cp -R urb/zod $(DESTDIR)/usr/lib/urb
|
||||
|
||||
clean:
|
||||
$(RM) $(VERE_OFILES) $(BIN)/vere vere.pkg
|
||||
|
||||
@ -332,3 +341,5 @@ distclean: clean
|
||||
$(MAKE) -C outside/re2 clean
|
||||
$(MAKE) -C outside/ed25519 clean
|
||||
$(RM) $(BPT_O)
|
||||
|
||||
.PHONY: clean distclean
|
||||
|
3
debian/.gitignore
vendored
Normal file
3
debian/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
urbit/
|
||||
urbit.debhelper.log
|
||||
urbit.substvars
|
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
urbit (0.2-1) unstable; urgency=low
|
||||
|
||||
* Initial release
|
||||
|
||||
-- Urbit <urbit@urbit.org> Wed, 21 May 2014 15:12:49 -0700
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
||||
8
|
13
debian/control
vendored
Normal file
13
debian/control
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
Source: urbit
|
||||
Section: unknown
|
||||
Priority: extra
|
||||
Maintainer: Urbit <urbit@urbit.org>
|
||||
Build-Depends: debhelper (>= 8.0.0), libssl-dev, libncurses5-dev, libgmp-dev, libsigsegv-dev
|
||||
Standards-Version: 3.9.3
|
||||
Homepage: http://urbit.org/
|
||||
|
||||
Package: urbit
|
||||
Architecture: amd64
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Urbit
|
||||
The Urbit virtual machine and supporting files.
|
6
debian/copyright
vendored
Normal file
6
debian/copyright
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: urbit
|
||||
Source: <http://urbit.org>
|
||||
|
||||
Files: *
|
||||
License: Public domain
|
1
debian/docs
vendored
Normal file
1
debian/docs
vendored
Normal file
@ -0,0 +1 @@
|
||||
README.markdown
|
1
debian/files
vendored
Normal file
1
debian/files
vendored
Normal file
@ -0,0 +1 @@
|
||||
urbit_0.2-1_amd64.deb unknown extra
|
18
debian/rules
vendored
Executable file
18
debian/rules
vendored
Executable file
@ -0,0 +1,18 @@
|
||||
#!/usr/bin/make -f
|
||||
# -*- makefile -*-
|
||||
# Sample debian/rules that uses debhelper.
|
||||
# This file was originally written by Joey Hess and Craig Small.
|
||||
# As a special exception, when this file is copied by dh-make into a
|
||||
# dh-make output file, you may use that output file without restriction.
|
||||
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
export DH_VERBOSE=1
|
||||
export DH_OPTIONS=-v
|
||||
%:
|
||||
dh $@
|
||||
override_dh_auto_build:
|
||||
dh_auto_build -- debbuild
|
||||
override_dh_auto_install:
|
||||
make debinstall DESTDIR=debian/urbit
|
||||
override_dh_installinfo:
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
Loading…
Reference in New Issue
Block a user