bob/bob.h

17 lines
381 B
C
Raw Normal View History

2024-05-21 22:24:01 +02:00
#ifndef BOB_H_H
#define BOB_H_H
#define VERSION "1.0.0"
/* Not recommend modifiying this unless you know what you are doing */
#define MAX_PKG_NAME_LENGTH 128
#define MAX_PKGS 128
/* URL to download binaries from */
/* For Github, use https://raw.githubusercontent.com/username/repo/branch */
#define URL "https://bob.night0721.xyz"
2024-05-21 22:24:01 +02:00
#define DEST_DIR "/usr/local/bin/"
#endif