Skip to content

Instantly share code, notes, and snippets.

@Bubblemelon
Bubblemelon / building_ostree.md
Last active March 12, 2024 23:29
Additional information on the [Building](https://github.com/ostreedev/ostree#building) section of ostree

Building ostree

These commands are for building on Fedora, it will not work on Ubuntu(Debian) OS(s).

# Optional since ./autogen.sh checks if the submodule needs to be updated
git submodule update --init
./autogen.sh --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc
./configure --prefix=/usr
make 
@thornbill
thornbill / .gitlab-ci.yml
Created November 22, 2016 21:29
Example Node GitLab CI Yamlfile
# Official framework image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/node/tags/
image: node:6
before_script:
- npm install
# This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
cache:
@tejainece
tejainece / Makefile
Created May 7, 2014 09:43
Get duration, width and height of a video using ffmpeg
CC = gcc
LD_FLAGS = -lavformat -lavcodec
all: get_width_and_height
get_width_and_height: get_width_and_height.c
$(CC) -o $@ $< $(LD_FLAGS)
clean:
rm get_width_and_height